public class

FactoryConfigurationError

extends Error
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ javax.xml.stream.FactoryConfigurationError

Class Overview

An error class for reporting factory configuration errors.

Summary

Public Constructors
FactoryConfigurationError()
Default constructor
FactoryConfigurationError(Exception e)
Construct an exception with a nested inner exception
FactoryConfigurationError(Exception e, String msg)
Construct an exception with a nested inner exception and a message
FactoryConfigurationError(String msg, Exception e)
Construct an exception with a nested inner exception and a message
FactoryConfigurationError(String msg)
Construct an exception with associated message
Public Methods
Throwable getCause()
use the exception chaining mechanism of JDK1.4
Exception getException()
Return the nested exception (if any)
String getMessage()
Report the message associated with this error
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public FactoryConfigurationError ()

Default constructor

public FactoryConfigurationError (Exception e)

Construct an exception with a nested inner exception

Parameters
e the exception to nest

public FactoryConfigurationError (Exception e, String msg)

Construct an exception with a nested inner exception and a message

Parameters
e the exception to nest
msg the message to report

public FactoryConfigurationError (String msg, Exception e)

Construct an exception with a nested inner exception and a message

Parameters
msg the message to report
e the exception to nest

public FactoryConfigurationError (String msg)

Construct an exception with associated message

Parameters
msg the message to report

Public Methods

public Throwable getCause ()

use the exception chaining mechanism of JDK1.4

public Exception getException ()

Return the nested exception (if any)

Returns
  • the nested exception or null

public String getMessage ()

Report the message associated with this error

Returns
  • the string value of the message