Module  javafx.graphics
软件包  javafx.application

Class Preloader.ErrorNotification

    • 构造方法详细信息

      • ErrorNotification

        public ErrorNotification​(String location,
                                 String details,
                                 Throwable cause)
        构造错误通知。
        参数
        location - 与错误相关联的URL(如果有); 可能为null
        details - 描述错误的字符串 必须非空
        cause - 错误的原因; 可能为null
    • 方法详细信息

      • getLocation

        public String getLocation​()
        检索与此错误相关联的URL(如果有)。 例如,如果有下载或歌唱检查错误,这将是有问题的jar文件的URL。 它可能为null。
        结果
        位置,或null
      • getDetails

        public String getDetails​()
        检索错误的描述。 它可能是空字符串,但总是非空。
        结果
        错误的描述
      • getCause

        public Throwable getCause​()
        检索与此错误通知相关联的异常或错误(如果有)。 它可能为null。
        结果
        错误的原因,或null
      • toString

        public String toString​()
        返回此 ErrorNotification对象的字符串表示形式。
        重写:
        toStringObject
        结果
        这个 ErrorNotification对象的字符串表示形式。