Package cl.obcom.desktopfx.core
Class DesktopException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.core.DesktopException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DdeException
,ExpiredException
,ExpressionException
,NetServerException
,StationException
Signals that a
Desktop
exception of some sort has occurred.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newDesktopException
instance.DesktopException
(String message) Constructs a newDesktopException
with amessage
.DesktopException
(String message, Throwable cause) Constructs a newDesktopException
with amessage
andcause
.DesktopException
(Throwable cause) Constructs a newDesktopException
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
-
DesktopException
public DesktopException()Constructs a newDesktopException
instance. -
DesktopException
Constructs a newDesktopException
with amessage
.- Parameters:
message
- the detail message.
-
DesktopException
Constructs a newDesktopException
with acause
.- Parameters:
cause
- the cause of this exception.
-
DesktopException
Constructs a newDesktopException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-