Package org.apache.axis
Class ConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.axis.ConfigurationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
WSDDException
ConfigurationException is thrown when an error occurs trying to
use an EngineConfiguration.
- Author:
- Glyn Normington (glyn@apache.org)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static boolean
Flag wether to copy the orginal exception by default.protected static org.apache.commons.logging.Log
TheLog
used by this class for logging all messages. -
Constructor Summary
ConstructorsConstructorDescriptionConfigurationException
(Exception exception) Construct a ConfigurationException from an Exception.ConfigurationException
(Exception exception, boolean copyStack) Construct a ConfigurationException from an Exception.ConfigurationException
(String message) Construct a ConfigurationException from a String. -
Method Summary
Modifier and TypeMethodDescriptionGet any contained exception.toString()
Stringify, including stack trace.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
copyStackByDefault
protected static boolean copyStackByDefaultFlag wether to copy the orginal exception by default. -
log
protected static org.apache.commons.logging.Log logTheLog
used by this class for logging all messages.
-
-
Constructor Details
-
ConfigurationException
Construct a ConfigurationException from a String. The string is wrapped in an exception, enabling a stack traceback to be obtained.- Parameters:
message
- String form of the error
-
ConfigurationException
Construct a ConfigurationException from an Exception.- Parameters:
exception
- original exception which was unexpected
-
ConfigurationException
Construct a ConfigurationException from an Exception.- Parameters:
exception
- original exception which was unexpectedcopyStack
- set to true to copy the orginal exception's stack
-
-
Method Details