diff options
Diffstat (limited to 'java/12-error-handling-2/MathsException.java')
| -rw-r--r-- | java/12-error-handling-2/MathsException.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/java/12-error-handling-2/MathsException.java b/java/12-error-handling-2/MathsException.java deleted file mode 100644 index bdbaf81..0000000 --- a/java/12-error-handling-2/MathsException.java +++ /dev/null @@ -1,22 +0,0 @@ -public class MathsException extends Exception { - - public MathsException() { - // TODO Auto-generated constructor stub - } - - public MathsException(String message) { - super(message); - // TODO Auto-generated constructor stub - } - - public MathsException(Throwable cause) { - super(cause); - // TODO Auto-generated constructor stub - } - - public MathsException(String message, Throwable cause) { - super(message, cause); - // TODO Auto-generated constructor stub - } - -} |
