Package org.openstreetmap.josm.io
Class ChangesetQuery.ChangesetQueryUrlException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.io.ChangesetQuery.ChangesetQueryUrlException
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ChangesetQuery
public static class ChangesetQuery.ChangesetQueryUrlException extends Exception
Exception thrown for invalid changeset queries.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChangesetQueryUrlException(String message)
Constructs a newChangesetQueryUrlException
with the specified detail message.ChangesetQueryUrlException(String message, Throwable cause)
Constructs a newChangesetQueryUrlException
with the specified cause and detail message.ChangesetQueryUrlException(Throwable cause)
Constructs a newChangesetQueryUrlException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ChangesetQueryUrlException
public ChangesetQueryUrlException(String message)
Constructs a newChangesetQueryUrlException
with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
ChangesetQueryUrlException
public ChangesetQueryUrlException(String message, Throwable cause)
Constructs a newChangesetQueryUrlException
with the specified cause and detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
ChangesetQueryUrlException
public ChangesetQueryUrlException(Throwable cause)
Constructs a newChangesetQueryUrlException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-