Package org.openstreetmap.josm.io
Class MissingOAuthAccessTokenException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.io.OsmTransferException
-
- org.openstreetmap.josm.io.MissingOAuthAccessTokenException
-
- All Implemented Interfaces:
java.io.Serializable
public class MissingOAuthAccessTokenException extends OsmTransferException
Exception thrown when a valid OAuth access token was expected, but not found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MissingOAuthAccessTokenException()
Constructs a newMissingOAuthAccessTokenException
.MissingOAuthAccessTokenException(java.lang.String message)
Constructs a newMissingOAuthAccessTokenException
with the specified detail message.MissingOAuthAccessTokenException(java.lang.String message, java.lang.Throwable cause)
Constructs a newMissingOAuthAccessTokenException
with the specified detail message and cause.MissingOAuthAccessTokenException(java.lang.Throwable cause)
Constructs a newMissingOAuthAccessTokenException
with the specified cause.
-
Method Summary
-
Methods inherited from class org.openstreetmap.josm.io.OsmTransferException
getUrl, setUrl
-
-
-
-
Constructor Detail
-
MissingOAuthAccessTokenException
public MissingOAuthAccessTokenException()
Constructs a newMissingOAuthAccessTokenException
.
-
MissingOAuthAccessTokenException
public MissingOAuthAccessTokenException(java.lang.String message, java.lang.Throwable cause)
Constructs a newMissingOAuthAccessTokenException
with the specified detail message and cause.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
-
MissingOAuthAccessTokenException
public MissingOAuthAccessTokenException(java.lang.String message)
Constructs a newMissingOAuthAccessTokenException
with the specified detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
MissingOAuthAccessTokenException
public MissingOAuthAccessTokenException(java.lang.Throwable cause)
Constructs a newMissingOAuthAccessTokenException
with the specified cause.- Parameters:
cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
-
-