Class MissingArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.yworkflow.common.error.WorkflowRuntimeException
com.yworkflow.definition.model.extension.error.MissingArgumentException
- All Implemented Interfaces:
Serializable
Runtime exception thrown when a required argument is missing. MissingArgumentException is a
specialized runtime exception for argument validation errors, indicating that a required
parameter or argument was not provided.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMissingArgumentException(String message) Creates a new MissingArgumentException with the specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MissingArgumentException
Creates a new MissingArgumentException with the specified message.- Parameters:
message- the detail message describing which argument is missing
-