Class RequestHandler.RequestHandlerErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.io.remotecontrol.handler.RequestHandler.RequestHandlerException
-
- org.openstreetmap.josm.io.remotecontrol.handler.RequestHandler.RequestHandlerErrorException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RequestHandler.RequestHandlerOsmApiException
- Enclosing class:
- RequestHandler
public static class RequestHandler.RequestHandlerErrorException extends RequestHandler.RequestHandlerException
Error raised when a runtime error occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestHandlerErrorException(java.lang.String message)
Constructs a newRequestHandlerErrorException
.RequestHandlerErrorException(java.lang.Throwable cause)
Constructs a newRequestHandlerErrorException
.
-
-
-
Constructor Detail
-
RequestHandlerErrorException
public RequestHandlerErrorException(java.lang.String message)
Constructs a newRequestHandlerErrorException
.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.- Since:
- 17330
-
RequestHandlerErrorException
public RequestHandlerErrorException(java.lang.Throwable cause)
Constructs a newRequestHandlerErrorException
.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
-