Class UserCancelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
se.swedenconnect.bankid.rpapi.types.BankIDException
se.swedenconnect.bankid.rpapi.types.UserCancelException
- All Implemented Interfaces:
Serializable
Exception class for when the user cancels an operation.
- Author:
- Martin Lindström
- See Also:
-
Constructor Summary
ConstructorDescriptionDefault constructor.UserCancelException
(String message) Constructor assigning the message.UserCancelException
(String message, Throwable cause) Constructor assigning the message and the cause of the error.UserCancelException
(Throwable cause) Constructor assigning the cause of the error. -
Method Summary
Methods inherited from class se.swedenconnect.bankid.rpapi.types.BankIDException
getDetails, getErrorCode, setDetails, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
UserCancelException
public UserCancelException()Default constructor. -
UserCancelException
Constructor assigning the message.- Parameters:
message
- the message
-
UserCancelException
Constructor assigning the cause of the error.- Parameters:
cause
- cause of the error
-
UserCancelException
Constructor assigning the message and the cause of the error.- Parameters:
message
- the messagecause
- the cause of the error
-