Top Description Fields Constructors
javax.xml.validation

public final Class SchemaFactoryConfigurationError

extends Error
Class Inheritance

Thrown when a problem with configuration with the Schema Factories exists. This error will typically be thrown when the class of a schema factory specified in the system properties cannot be found or instantiated.
Since
1.8

Field Summary

Modifier and TypeField and Description
pack-priv static final long

Constructor Summary

AccessConstructor and Description
public
SchemaFactoryConfigurationError()

Create a new SchemaFactoryConfigurationError with no detail message.

public
SchemaFactoryConfigurationError(String
The error message for the exception.
message
)

Create a new SchemaFactoryConfigurationError with the String specified as an error message.

public
SchemaFactoryConfigurationError(Throwable
The exception or error to be encapsulated in a SchemaFactoryConfigurationError.
cause
)

Create a new SchemaFactoryConfigurationError with the given Throwable base cause.

public
SchemaFactoryConfigurationError(String
The detail message.
message
,
Throwable
The exception or error to be encapsulated in a SchemaFactoryConfigurationError.
cause
)

Create a new SchemaFactoryConfigurationError with the given Throwable base cause and detail message.

Field Detail

serialVersionUIDback to summary
pack-priv static final long serialVersionUID

Hides java.lang.Error.serialVersionUID.

Constructor Detail

SchemaFactoryConfigurationErrorback to summary
public SchemaFactoryConfigurationError()

Create a new SchemaFactoryConfigurationError with no detail message.

SchemaFactoryConfigurationErrorback to summary
public SchemaFactoryConfigurationError(String message)

Create a new SchemaFactoryConfigurationError with the String specified as an error message.

Parameters
message:String

The error message for the exception.

SchemaFactoryConfigurationErrorback to summary
public SchemaFactoryConfigurationError(Throwable cause)

Create a new SchemaFactoryConfigurationError with the given Throwable base cause.

Parameters
cause:Throwable

The exception or error to be encapsulated in a SchemaFactoryConfigurationError.

SchemaFactoryConfigurationErrorback to summary
public SchemaFactoryConfigurationError(String message, Throwable cause)

Create a new SchemaFactoryConfigurationError with the given Throwable base cause and detail message.

Parameters
message:String

The detail message.

cause:Throwable

The exception or error to be encapsulated in a SchemaFactoryConfigurationError.