You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
468 B
Java
23 lines
468 B
Java
package com.engine.sship.exception;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description:
|
|
* @Date 2023/2/21
|
|
* @Version V1.0
|
|
**/
|
|
public class CustomizeRunTimeException extends RuntimeException{
|
|
|
|
public CustomizeRunTimeException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public CustomizeRunTimeException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public CustomizeRunTimeException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|