| java.lang.Object java.lang.Throwable java.lang.Exception servlet.ApplyXSLTException
ApplyXSLTException | public ApplyXSLTException()(Code) | | Constructor for exception with no additional detail.
|
ApplyXSLTException | public ApplyXSLTException(String s)(Code) | | Constructor for exception with message.
Parameters: s - Exception message |
ApplyXSLTException | public ApplyXSLTException(int hsc)(Code) | | Constructor for exception with HTTP status code.
Parameters: hsc - Valid status code from javax.servlet.http.HttpServletResponse |
ApplyXSLTException | public ApplyXSLTException(String s, int hsc)(Code) | | Constructor for exception with message and HTTP status code.
Parameters: s - Exception message Parameters: hsc - Valid status code from javax.servlet.http.HttpServletResponse |
ApplyXSLTException | public ApplyXSLTException(Exception e)(Code) | | Constructor for exception.
Parameters: e - Exception to be wrapped. |
ApplyXSLTException | public ApplyXSLTException(String s, Exception e)(Code) | | Constructor for passed exception with message.
Parameters: s - Exception message Parameters: e - Exception to be wrapped. |
ApplyXSLTException | public ApplyXSLTException(Exception e, int hsc)(Code) | | Constructor for passed exception with HTTP status code.
Parameters: e - Exception to be wrapped. Parameters: hsc - Valid status code from javax.servlet.http.HttpServletResponse |
ApplyXSLTException | public ApplyXSLTException(String s, Exception e, int hsc)(Code) | | Constructor for passed exception with HTTP status code and message.
Parameters: s - Exception message Parameters: e - Exception to be wrapped. Parameters: hsc - Valid status code from javax.servlet.http.HttpServletResponse |
appendMessage | public void appendMessage(String s)(Code) | | Appends string to exception message.
Parameters: s - String to be added to message |
getException | public Exception getException()(Code) | | Returns the wrapped exception.
Wrapped exception |
getMessage | public String getMessage()(Code) | | Returns exception message.
exception message |
getStatusCode | public int getStatusCode()(Code) | | Returns the HTTP status code associated with the exception.
Valid status code from javax.servlet.http.HttpServletResponse |
|
|