@Deprecated
public class FactoryConfigurationError
extends java.lang.Error
com.rometools.rome.propono.atom.server.AtomHandlerFactory
exists. This error will
typically be thrown when the class of a parser factory specified in the system properties cannot
be found or instantiated.Modifier and Type | Field and Description |
---|---|
private java.lang.Exception |
exception
Deprecated.
Exception that represents the error. |
private static long |
serialVersionUID
Deprecated.
|
Constructor and Description |
---|
FactoryConfigurationError()
Deprecated.
Create a new
FactoryConfigurationError with no detail mesage. |
FactoryConfigurationError(java.lang.Exception e)
Deprecated.
Create a new
FactoryConfigurationError with a given Exception base
cause of the error. |
FactoryConfigurationError(java.lang.Exception e,
java.lang.String msg)
Deprecated.
Create a new
FactoryConfigurationError with the given Exception
base cause and detail message. |
FactoryConfigurationError(java.lang.String msg)
Deprecated.
Create a new
FactoryConfigurationError with the String specified
as an error message. |
Modifier and Type | Method and Description |
---|---|
java.lang.Exception |
getException()
Deprecated.
Return the actual exception (if any) that caused this exception to be raised.
|
java.lang.String |
getMessage()
Deprecated.
Return the message (if any) for this error .
|
private static final long serialVersionUID
private final java.lang.Exception exception
Exception
that represents the error.public FactoryConfigurationError()
FactoryConfigurationError
with no detail mesage.public FactoryConfigurationError(java.lang.String msg)
FactoryConfigurationError
with the String
specified
as an error message.msg
- The error message for the exception.public FactoryConfigurationError(java.lang.Exception e)
FactoryConfigurationError
with a given Exception
base
cause of the error.e
- The exception to be encapsulated in a FactoryConfigurationError.public FactoryConfigurationError(java.lang.Exception e, java.lang.String msg)
FactoryConfigurationError
with the given Exception
base cause and detail message.e
- The exception to be encapsulated in a FactoryConfigurationErrormsg
- The detail message.public java.lang.String getMessage()
getMessage
in class java.lang.Throwable
public java.lang.Exception getException()