first commit
This commit is contained in:
21
dapp/src/project/monitor/erc20/exception/CoinException.java
Executable file
21
dapp/src/project/monitor/erc20/exception/CoinException.java
Executable file
@@ -0,0 +1,21 @@
|
||||
package project.monitor.erc20.exception;
|
||||
|
||||
public class CoinException extends RuntimeException {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -486935767744435664L;
|
||||
|
||||
public CoinException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public CoinException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public CoinException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user