| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.geoserver.platform.ServiceException
All known Subclasses: org.vfny.geoserver.ServiceException, org.geoserver.wfs.WFSException,
Constructor Summary | |
public | ServiceException(String message) Constructs the exception from a message. | public | ServiceException(String message, Throwable cause) Constructs the exception from a message and causing exception. | public | ServiceException(String message, Throwable cause, String code) Constructs the exception from a message, causing exception, and code. | public | ServiceException(String message, Throwable cause, String code, String locator) Constructs the exception from a message, causing exception, code, and
locator. | public | ServiceException(String message, String code) Constructs the exception from a message, and code. | public | ServiceException(String message, String code, String locator) Constructs the exception from a message,code, and
locator. | public | ServiceException(Throwable cause) Constructs the exception from a causing exception. | public | ServiceException(Throwable cause, String code) Constructs the exception from causing exception, and code. | public | ServiceException(Throwable cause, String code, String locator) Constructs the exception from a causing exception, code, and locator. |
exceptionText | List exceptionText(Code) | | List of text recording information about the exception
|
ServiceException | public ServiceException(String message)(Code) | | Constructs the exception from a message.
Parameters: message - The message describing the exception. |
ServiceException | public ServiceException(String message, Throwable cause)(Code) | | Constructs the exception from a message and causing exception.
Parameters: message - The message describing the exception. Parameters: cause - The case of the exception. |
ServiceException | public ServiceException(String message, Throwable cause, String code)(Code) | | Constructs the exception from a message, causing exception, and code.
Parameters: message - The message describing the exception. Parameters: cause - The case of the exception. Parameters: code - The application specific exception code for the exception. |
ServiceException | public ServiceException(String message, Throwable cause, String code, String locator)(Code) | | Constructs the exception from a message, causing exception, code, and
locator.
Parameters: message - The message describing the exception. Parameters: cause - The case of the exception. Parameters: code - The application specific exception code for the exception. Parameters: locator - The application specific locator for the exception. |
ServiceException | public ServiceException(String message, String code)(Code) | | Constructs the exception from a message, and code.
Parameters: message - The message describing the exception. Parameters: code - The application specific exception code for the exception. |
ServiceException | public ServiceException(String message, String code, String locator)(Code) | | Constructs the exception from a message,code, and
locator.
Parameters: message - The message describing the exception. Parameters: code - The application specific exception code for the exception. Parameters: locator - The application specific locator for the exception. |
ServiceException | public ServiceException(Throwable cause)(Code) | | Constructs the exception from a causing exception.
Parameters: cause - The case of the exception. |
ServiceException | public ServiceException(Throwable cause, String code)(Code) | | Constructs the exception from causing exception, and code.
Parameters: cause - The case of the exception. Parameters: code - The application specific exception code for the exception. |
ServiceException | public ServiceException(Throwable cause, String code, String locator)(Code) | | Constructs the exception from a causing exception, code, and locator.
Parameters: cause - The case of the exception. Parameters: code - The application specific exception code for the exception. Parameters: locator - The application specific locator for the exception. |
getCode | public String getCode()(Code) | | The application specifc code of the exception. |
getExceptionText | public List getExceptionText()(Code) | | Returns the list of text fragments which provide additonal information
about the exception.
Text fragements may be added directly to the list with:
exception.getExceptionTest().add( "text fragment" );
A list of String recording information about the exception. |
getLocator | public String getLocator()(Code) | | The application specific locator. |
setCode | public void setCode(String code)(Code) | | Sets the code for the exception.
Parameters: code - The application specific code. |
setLocator | public void setLocator(String locator)(Code) | | Sets the locator for the exception.
The application specific locator. |
|
|