标签:ram ring detail rms const ons 定义 param 异常
public class CreateFailedException extends RuntimeException{
public CreateFailedException(String errMsg) {
super(errMsg);
}
/**
* Construct a new runtime exception with the cause
*
* @param cause cause
*/
public CreateFailedException(Throwable cause) {
super(cause);
}
/**
* Construct a new runtime exception with the detail message and cause
*
* @param errMsg message
* @param cause cause
*/
public CreateFailedException(String errMsg, Throwable cause) {
super(errMsg, cause);
}
}
标签:ram ring detail rms const ons 定义 param 异常
原文地址:https://www.cnblogs.com/PythonOrg/p/14836445.html