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