java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
javafx.fxml.LoadException
- All Implemented Interfaces:
Serializable
Thrown when an error is encountered during a load operation.
- Since:
- JavaFX 2.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a defaultLoadException
.LoadException
(String message) Creates aLoadException
with the given message.LoadException
(String message, Throwable cause) Creates aLoadException
with the given message andThrowable
cause.LoadException
(Throwable cause) Creates aLoadException
with the givenThrowable
cause. -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LoadException
public LoadException()Creates a defaultLoadException
. -
LoadException
Creates aLoadException
with the given message.- Parameters:
message
- the message
-
LoadException
Creates aLoadException
with the givenThrowable
cause.- Parameters:
cause
- theThrowable
cause
-
LoadException
Creates aLoadException
with the given message andThrowable
cause.- Parameters:
message
- the messagecause
- theThrowable
cause
-