
com.yomahub.liteflow.exception.CatchErrorException Maven / Gradle / Ivy
The newest version!
package com.yomahub.liteflow.exception;
/**
* 类型错误异常
*
* @author Yun
*/
public class CatchErrorException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* 异常信息
*/
private String message;
public CatchErrorException(String message) {
this.message = message;
}
@Override
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy