Package org.htmlunit.xpath.xml.utils
Class WrappedRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.htmlunit.xpath.xml.utils.WrappedRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
public class WrappedRuntimeException extends java.lang.RuntimeException
This class is for throwing important checked exceptions over non-checked methods. It should be used with care, and in limited circumstances.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Exception
m_exception
Primary checked exception.
-
Constructor Summary
Constructors Constructor Description WrappedRuntimeException(java.lang.Exception e)
Construct a WrappedRuntimeException from a checked exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Exception
getException()
Get the checked exception that this runtime exception wraps.
-