- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.refcodes.exception.AbstractException
-
- org.refcodes.filesystem.FileSystemException
-
- org.refcodes.filesystem.UnknownPathException
-
- All Implemented Interfaces:
Serializable,org.refcodes.exception.ErrorCodeAccessor,org.refcodes.exception.Trap,org.refcodes.mixin.PathAccessor
public class UnknownPathException extends FileSystemException
The Class UnknownPathException.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description UnknownPathException(String aPath, String message)Instantiates a new unknown path exception.UnknownPathException(String aPath, String aMessage, String aErrorCode)Instantiates a new unknown path exception.UnknownPathException(String aPath, String message, Throwable cause)Instantiates a new unknown path exception.UnknownPathException(String aPath, String aMessage, Throwable aCause, String aErrorCode)Instantiates a new unknown path exception.UnknownPathException(String aPath, Throwable cause)Instantiates a new unknown path exception.UnknownPathException(String aPath, Throwable aCause, String aErrorCode)Instantiates a new unknown path exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPath()Gets the path.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownPathException
public UnknownPathException(String aPath, String aMessage, String aErrorCode)
Instantiates a new unknown path exception.- Parameters:
aPath- the pathaMessage- the messageaErrorCode- the error code
-
UnknownPathException
public UnknownPathException(String aPath, String aMessage, Throwable aCause, String aErrorCode)
Instantiates a new unknown path exception.- Parameters:
aPath- the pathaMessage- the messageaCause- the causeaErrorCode- the error code
-
UnknownPathException
public UnknownPathException(String aPath, String message, Throwable cause)
Instantiates a new unknown path exception.- Parameters:
aPath- the pathmessage- the messagecause- the cause
-
UnknownPathException
public UnknownPathException(String aPath, String message)
Instantiates a new unknown path exception.- Parameters:
aPath- the pathmessage- the message
-
UnknownPathException
public UnknownPathException(String aPath, Throwable aCause, String aErrorCode)
Instantiates a new unknown path exception.- Parameters:
aPath- the pathaCause- the causeaErrorCode- the error code
-
-
Method Detail
-
getPath
public String getPath()
Gets the path.- Specified by:
getPathin interfaceorg.refcodes.mixin.PathAccessor- Returns:
- the path
-
-