Package org.openstreetmap.josm.tools
Class UserCancelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.tools.UserCancelException
-
- All Implemented Interfaces:
java.io.Serializable
public class UserCancelException extends java.lang.Exception
Exception thrown when an operation is canceled by user.- Since:
- 1001 (creation), 8919 (move into this package)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserCancelException()Constructs a newUserCancelException.UserCancelException(java.lang.String message)Constructs a newUserCancelExceptionwith the specified detail message.UserCancelException(java.lang.String message, java.lang.Throwable cause)Constructs a newUserCancelExceptionwith the specified detail message and cause.UserCancelException(java.lang.Throwable cause)Constructs a newUserCancelExceptionwith the specified cause.
-
-
-
Constructor Detail
-
UserCancelException
public UserCancelException()
Constructs a newUserCancelException.
-
UserCancelException
public UserCancelException(java.lang.String message, java.lang.Throwable cause)
Constructs a newUserCancelExceptionwith 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). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
UserCancelException
public UserCancelException(java.lang.String message)
Constructs a newUserCancelExceptionwith the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
UserCancelException
public UserCancelException(java.lang.Throwable cause)
Constructs a newUserCancelExceptionwith the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
-