Package com.codingapi.flow.exception
Class FlowException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.codingapi.springboot.framework.exception.LocaleMessageException
com.codingapi.flow.exception.FlowException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FlowExecutionException,FlowNotFoundException,FlowPermissionException,FlowStateException,FlowValidationException
public abstract class FlowException
extends com.codingapi.springboot.framework.exception.LocaleMessageException
流程引擎框架异常基类
所有流程引擎相关的异常都应该继承此类
- Since:
- 1.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFlowException(String errorCode, String message) 构造函数FlowException(String errorCode, String message, Throwable cause) 构造函数 -
Method Summary
Methods inherited from class com.codingapi.springboot.framework.exception.LocaleMessageException
getErrCode, getErrMessage, ofMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FlowException
构造函数- Parameters:
errorCode- 错误码message- 错误信息
-
FlowException
构造函数- Parameters:
errorCode- 错误码message- 错误信息cause- 原因
-