This commit is contained in:
geek 2018-04-24 21:24:14 +09:00
parent d69fe39278
commit 2843a77ca5

View File

@ -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);
}
}