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:
java.io.Serializable
- Enclosing class:
- ChangesetQuery
public static class ChangesetQuery.ChangesetQueryUrlException extends java.lang.Exception
Exception thrown for invalid changeset queries.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChangesetQueryUrlException(java.lang.String message)
Constructs a newChangesetQueryUrlException
with the specified detail message.ChangesetQueryUrlException(java.lang.String message, java.lang.Throwable cause)
Constructs a newChangesetQueryUrlException
with the specified cause and detail message.ChangesetQueryUrlException(java.lang.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
).
-
-
-
Constructor Detail
-
ChangesetQueryUrlException
public ChangesetQueryUrlException(java.lang.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(java.lang.String message, java.lang.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(java.lang.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.)
-
-