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 SummaryConstructorsConstructorDescriptionCreates a defaultLoadException.LoadException(String message) Creates aLoadExceptionwith the given message.LoadException(String message, Throwable cause) Creates aLoadExceptionwith the given message andThrowablecause.LoadException(Throwable cause) Creates aLoadExceptionwith the givenThrowablecause.
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
LoadExceptionpublic LoadException()Creates a defaultLoadException.
- 
LoadExceptionCreates aLoadExceptionwith the given message.- Parameters:
- message- the message
 
- 
LoadExceptionCreates aLoadExceptionwith the givenThrowablecause.- Parameters:
- cause- the- Throwablecause
 
- 
LoadExceptionCreates aLoadExceptionwith the given message andThrowablecause.- Parameters:
- message- the message
- cause- the- Throwablecause
 
 
-