Package cl.obcom.desktopfx.core
Class StationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.core.DesktopException
cl.obcom.desktopfx.core.StationException
- All Implemented Interfaces:
Serializable
Exception thrown when the desktop station is unusable.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newStationException
instance.StationException
(String message) Constructs a newStationException
with amessage
.StationException
(String message, Throwable cause) Constructs a newStationException
with amessage
andcause
.StationException
(Throwable cause) Constructs a newStationException
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
-
StationException
public StationException()Constructs a newStationException
instance. -
StationException
Constructs a newStationException
with amessage
.- Parameters:
message
- the detail message.
-
StationException
Constructs a newStationException
with acause
.- Parameters:
cause
- the cause of this exception.
-
StationException
Constructs a newStationException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-