1 package chapter5; 2 3 public class TestException extends Exception { 4 5 private static final long serialVersionUID = 8326547927308399902L; 6 7 public TestException(String message) { 8 super(message); 9 } 10 }