Class Preloader.ErrorNotification
java.lang.Object
javafx.application.Preloader.ErrorNotification
- All Implemented Interfaces:
- Preloader.PreloaderNotification
- Enclosing class:
- Preloader
public static class Preloader.ErrorNotification
extends Object
implements Preloader.PreloaderNotification
Preloader notification that reports an error.
 This is delivered to preloader in case of problem with application startup.
- Since:
- JavaFX 2.0
- 
Constructor SummaryConstructorsConstructorDescriptionErrorNotification(String location, String details, Throwable cause) Constructs an error notification.
- 
Method SummaryModifier and TypeMethodDescriptiongetCause()Retrieves the Exception or Error associated with this error notification, if any.Retrieves the description of the error.Retrieves the URL associated with this error, if any.toString()Returns a string representation of thisErrorNotificationobject.
- 
Constructor Details- 
ErrorNotification
 
- 
- 
Method Details- 
getLocationRetrieves the URL associated with this error, if any. For example, if there is a download or singing check error, this will be the URL of the jar file that has the problem. It may be null.- Returns:
- the location, or null
 
- 
getDetailsRetrieves the description of the error. It may be the empty string, but is always non-null.- Returns:
- the description of the error
 
- 
getCauseRetrieves the Exception or Error associated with this error notification, if any. It may be null.- Returns:
- the cause of the error, or null
 
- 
toString
 
-