ing
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
package com.loafle.overflow.core.exception;
|
||||
|
||||
public class OverflowException extends Exception {
|
||||
public OverflowException(String s, Throwable throwable) {
|
||||
super(s, throwable);
|
||||
public OverflowException(String message){ super(message); }
|
||||
public OverflowException(String message, Throwable throwable) {
|
||||
super(message, throwable);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user