- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- javax.xml.validation.SchemaFactoryConfigurationError
-
- All Implemented Interfaces:
-
Serializable
public final class SchemaFactoryConfigurationError extends Error
当存在具有Schema工厂的配置问题时抛出。 当系统属性中指定的模式工厂的类无法找到或实例化时,通常会抛出此错误。- 从以下版本开始:
- 1.8
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SchemaFactoryConfigurationError()
创建一个新的SchemaFactoryConfigurationError
没有详细信息。SchemaFactoryConfigurationError(String message)
创建一个新的SchemaFactoryConfigurationError
,其中String
指定为错误消息。SchemaFactoryConfigurationError(String message, Throwable cause)
创建一个新的SchemaFactoryConfigurationError
与给定的Throwable
基本原因和详细信息。SchemaFactoryConfigurationError(Throwable cause)
创建一个新的SchemaFactoryConfigurationError
与给定的Throwable
基本原因。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
SchemaFactoryConfigurationError
public SchemaFactoryConfigurationError()
创建一个新的SchemaFactoryConfigurationError
,没有详细信息。
-
SchemaFactoryConfigurationError
public SchemaFactoryConfigurationError(String message)
创建一个新的SchemaFactoryConfigurationError
,其中String
指定为错误消息。- 参数
-
message
- 异常的错误消息。
-
SchemaFactoryConfigurationError
public SchemaFactoryConfigurationError(Throwable cause)
创建一个新的SchemaFactoryConfigurationError
与给定的Throwable
基本原因。- 参数
-
cause
- 要封装在SchemaFactoryConfigurationError中的异常或错误。
-
-