Package org.openstreetmap.josm.gui.oauth
Class OsmOAuthAuthorizationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.gui.oauth.OsmOAuthAuthorizationException
-
- All Implemented Interfaces:
java.io.Serializable
public class OsmOAuthAuthorizationException extends java.lang.Exception
OSM OAuth authorization exception.- Since:
- 2746
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OsmOAuthAuthorizationException(java.lang.String message)
Constructs a newOsmLoginFailedException
with the specified detail message.OsmOAuthAuthorizationException(java.lang.Throwable cause)
Constructs a newOsmLoginFailedException
with the specified cause.
-
-
-
Constructor Detail
-
OsmOAuthAuthorizationException
public OsmOAuthAuthorizationException(java.lang.String message)
Constructs a newOsmLoginFailedException
with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
OsmOAuthAuthorizationException
public OsmOAuthAuthorizationException(java.lang.Throwable cause)
Constructs a newOsmLoginFailedException
with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
-