Package cl.obcom.desktopfx.core
Class ExpiredException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.core.DesktopException
cl.obcom.desktopfx.core.ExpiredException
- All Implemented Interfaces:
Serializable
Exception thrown when the user's password has expired.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newExpiredException
instance.ExpiredException
(String message) Constructs a newExpiredException
with amessage
.ExpiredException
(String message, Throwable cause) Constructs a newExpiredException
with amessage
andcause
.ExpiredException
(Throwable cause) Constructs a newExpiredException
with acause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExpiredException
public ExpiredException()Constructs a newExpiredException
instance. -
ExpiredException
Constructs a newExpiredException
with amessage
.- Parameters:
message
- the detail message.
-
ExpiredException
Constructs a newExpiredException
with acause
.- Parameters:
cause
- the cause of this exception.
-
ExpiredException
Constructs a newExpiredException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-