| 1 | |
| 2 | public class NotCharacterException extends Exception { |
| 3 | |
| 4 | public NotCharacterException() { |
| 5 | super(); |
| 6 | // TODO Auto-generated constructor stub |
| 7 | } |
| 8 | |
| 9 | public NotCharacterException(String message) { |
| 10 | super(message); |
| 11 | // TODO Auto-generated constructor stub |
| 12 | } |
| 13 | |
| 14 | public NotCharacterException(Throwable cause) { |
| 15 | super(cause); |
| 16 | // TODO Auto-generated constructor stub |
| 17 | } |
| 18 | |
| 19 | public NotCharacterException(String message, Throwable cause) { |
| 20 | super(message, cause); |
| 21 | // TODO Auto-generated constructor stub |
| 22 | } |
| 23 | |
| 24 | } |