Package cl.obcom.desktopfx.layout
Class ValueFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.layout.ValueFormatException
- All Implemented Interfaces:
Serializable
Thrown when a
LayoutField
is assigned or retrieves a string value
with an invalid format.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newValueFormatException
instance.ValueFormatException
(String message) Constructs a newValueFormatException
with amessage
.ValueFormatException
(String message, Throwable cause) Constructs a newValueFormatException
with amessage
andcause
.ValueFormatException
(Throwable cause) Constructs a newValueFormatException
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
-
ValueFormatException
public ValueFormatException()Constructs a newValueFormatException
instance. -
ValueFormatException
Constructs a newValueFormatException
with amessage
.- Parameters:
message
- the detail message.
-
ValueFormatException
Constructs a newValueFormatException
with acause
.- Parameters:
cause
- the cause of this exception.
-
ValueFormatException
Constructs a newValueFormatException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-