| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException org.apache.commons.vfs.FileSystemException
FileSystemException | public class FileSystemException extends IOException (Code) | | Thrown for file system errors.
author: Adam Murdoch version: $Revision: 480428 $ $Date: 2006-11-28 22:15:24 -0800 (Tue, 28 Nov 2006) $ |
FileSystemException | public FileSystemException(String code)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. |
FileSystemException | public FileSystemException(String code, Object info0)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. Parameters: info0 - one context information. |
FileSystemException | public FileSystemException(String code, Object info0, Throwable throwable)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. Parameters: info0 - one context information. Parameters: throwable - the cause. |
FileSystemException | public FileSystemException(String code, Object[] info)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. Parameters: info - array of complementary info (context). |
FileSystemException | public FileSystemException(String code, Throwable throwable)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. Parameters: info - array of complementary info (context). |
FileSystemException | public FileSystemException(String code, Object[] info, Throwable throwable)(Code) | | Constructs exception with the specified detail message.
Parameters: code - the error code of the message. Parameters: info - array of complementary info (context). Parameters: throwable - the cause. |
FileSystemException | public FileSystemException(Throwable throwable)(Code) | | Constructs wrapper exception.
Parameters: throwable - the root cause to wrap. |
getCause | final public Throwable getCause()(Code) | | Retrieve root cause of the exception.
the root cause |
getCode | public String getCode()(Code) | | Retrieve error code of the exception.
Could be used as key for internationalization.
the code. |
getInfo | public String[] getInfo()(Code) | | Retrieve array of complementary info (context).
Could be used as parameter for internationalization.
the context info. |
getMessage | public String getMessage()(Code) | | retrieve message from bundle
|
|
|