| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.apache.xml.serializer.utils.WrappedRuntimeException
WrappedRuntimeException | final public class WrappedRuntimeException extends RuntimeException (Code) | | This class is for throwing important checked exceptions
over non-checked methods. It should be used with care,
and in limited circumstances.
This class is a copy of the one in org.apache.xml.utils.
It exists to cut the serializers dependancy on that package.
This class is not a public API, it is only public because it is
used by org.apache.xml.serializer.
|
Method Summary | |
public Exception | getException() Get the checked exception that this runtime exception wraps. |
serialVersionUID | final static long serialVersionUID(Code) | | |
WrappedRuntimeException | public WrappedRuntimeException(Exception e)(Code) | | Construct a WrappedRuntimeException from a
checked exception.
Parameters: e - Primary checked exception |
WrappedRuntimeException | public WrappedRuntimeException(String msg, Exception e)(Code) | | Constructor WrappedRuntimeException
Parameters: msg - Exception information. Parameters: e - Primary checked exception |
getException | public Exception getException()(Code) | | Get the checked exception that this runtime exception wraps.
The primary checked exception |
|
|
|