Exception.newException()
Signature
Exception newException (String errorType, String message, Exception cause)
Domain
ACTION, CONDITION, BUI
Description
This creates a new Exception Instance based on the data passed in.
Parameters
Name | Type | Description |
errorType | String | indicates the type of error this exception represents |
message | String | more detailed information about the error this exception represents |
cause | Exception | an exception that has caused this exception |
Returns
Type | Description |
Exception | The newly created Exception Instance. |