Package org.owasp.esapi.errors
Class ExecutorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.esapi.errors.EnterpriseSecurityException
-
- org.owasp.esapi.errors.ExecutorException
-
- All Implemented Interfaces:
java.io.Serializable
public class ExecutorException extends EnterpriseSecurityException
An ExecutorException should be thrown for any problems that arise during the execution of a system executable.- Author:
- Jeff Williams (jeff.williams@aspectsecurity.com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.owasp.esapi.errors.EnterpriseSecurityException
logger, logMessage
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ExecutorException()
Instantiates a new ExecutorException.ExecutorException(java.lang.String userMessage, java.lang.String logMessage)
Creates a new instance of ExecutorException.ExecutorException(java.lang.String userMessage, java.lang.String logMessage, java.lang.Throwable cause)
Instantiates a new ExecutorException.
-
Method Summary
-
Methods inherited from class org.owasp.esapi.errors.EnterpriseSecurityException
getLogMessage, getUserMessage
-
-
-
-
Constructor Detail
-
ExecutorException
protected ExecutorException()
Instantiates a new ExecutorException.
-
ExecutorException
public ExecutorException(java.lang.String userMessage, java.lang.String logMessage)
Creates a new instance of ExecutorException.- Parameters:
userMessage
- the message to display to userslogMessage
- the message logged
-
ExecutorException
public ExecutorException(java.lang.String userMessage, java.lang.String logMessage, java.lang.Throwable cause)
Instantiates a new ExecutorException.- Parameters:
userMessage
- the message to display to userslogMessage
- the message loggedcause
- the cause
-
-