1 // WISEException.java 2 // 3 // Exercise collections, inheritance, error handling 4 // Ethan Bolker, for cs110 exam 2, Spring 2004 5 6 public class WISEException extends Exception 7 { 8 public WISEException( String msg ) 9 { 10 super(msg); 11 } 12 }