org.entityfs.support.exception
Class WrappedMalformedURLException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.entityfs.support.exception.FileSystemException
org.entityfs.support.exception.WrappedMalformedURLException
- All Implemented Interfaces:
- Serializable
public class WrappedMalformedURLException
- extends FileSystemException
This is for wrapping an MalformedURLException
and rethrowing it as an
unchecked exception.
- Since:
- 1.0
- Author:
- Karl Gustafsson
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
WrappedMalformedURLException
public WrappedMalformedURLException(MalformedURLException e)
WrappedMalformedURLException
public WrappedMalformedURLException(String msg,
MalformedURLException e)
getWrapped
public MalformedURLException getWrapped()
- Get the wrapped
MalformedURLException
.
- Returns:
- The wrapped
MalformedURLException
.