Source of ExerciseException.java


  1: //ExerciseException.java
  2: 
  3: public class ExerciseException
  4:     extends Exception
  5: {
  6:     public ExerciseException()
  7:     {
  8:         super("Exercise exception thrown!");
  9:         System.out.println("Exception thrown.");
 10:     }
 11: 
 12:     public ExerciseException
 13:     (
 14:         String message
 15:     )
 16:     {
 17:         super(message);
 18:         System.out.println("ExerciseException invoked with an argument.");
 19:     }
 20: }