Class AttributeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.yworkflow.common.error.WorkflowException
com.yworkflow.definition.model.attribute.AttributeException
- All Implemented Interfaces:
Serializable
Exception thrown when attribute operations fail. AttributeException is a specialized exception
for errors that occur during attribute access, modification, or validation operations.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new AttributeException with the specified cause.AttributeException(String message) Creates a new AttributeException with the specified message.AttributeException(String message, Exception e) Creates a new AttributeException with the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AttributeException
Creates a new AttributeException with the specified cause.- Parameters:
ex- the cause of the exception
-
AttributeException
Creates a new AttributeException with the specified message.- Parameters:
message- the detail message
-
AttributeException
Creates a new AttributeException with the specified message and cause.- Parameters:
message- the detail messagee- the cause of the exception
-