The AWS Lambda service encountered an internal error.
ServiceException is a special exception intended to be used in the RPC interface. All of your RPC methods should declare that they throw ServiceException. The SecuredServiceExporter converts other exceptions into ServiceException, which ensures that GWT returns all of the useful information (like 403 error codes, etc.) to the client.
@author Kenneth J. PronoviciServiceException
represents a service framework related exception.
@version 1.0
This class is based off the OGC idea of an exception, which contains a {@link #code}, and {@link #locator}. Futhermore optional fragments of {@link #exceptionText} may be associated with the exception.
@author Justin Deoliveira, The Open Planning Project, jdeolive@openplans.orgDOCUMENT ME!
@author dzwiers @source $URL$A {@code ServiceException} object is created by the Runtime to denote anexception condition in the service. A type code is used to identify the exception type for future extendability. @author thomas.diesler@jboss.com @since 27-Sep-2013
TODO: This class intentionally does not extend RuntimeException (because callers should be catching this and converting it to an error response). However, this means that be default database transactions are not being rolled back when this is thrown - not sure if this is correct or not, needs to be reviewed (probably is not correct and needs adjustment in the Spring settings). @author bradpeabody
A {@code ServiceException} object is created by the Framework or serviceimplementation to denote an exception condition in the service. A type code is used to identify the exception type for future extendability. Service implementations may also create subclasses of {@code ServiceException}. When subclassing, the subclass should set the type to {@link #SUBCLASSED} toindicate that {@code ServiceException} has been subclassed.
This exception conforms to the general purpose exception chaining mechanism. @author $Id: 32a515460813c702b127f65dda91cd23781b2a98 $ @since 1.5
Where:
Java Exception have recently developed the ability to contain other exceptions. By calling initCause on your ServiceConfig Exception you can get the real exception included in the stacktrace above.
@author Gabriel Rold?n @author Chris Holmes @task REVISIT: Take a request in the constructor? This would make it so wedo not have to rely on schemas.opengis.net being available, as it will just reference the geoserver instance that created it. But to do this we need the request, as that's how we figure out the baseUrl. Would probably not be that hard to get the request included, and would lead to better error reporting... @deprecated use {@link org.geoserver.platform.ServiceException}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|