au.com.prunge.jgenfile.spi
Class FileSystemCreationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--au.com.prunge.jgenfile.JGenFileException
                          |
                          +--au.com.prunge.jgenfile.spi.FileSystemCreationException
All Implemented Interfaces:
Serializable

public class FileSystemCreationException
extends JGenFileException

An exception that occurs when creation of a file system from a provider fails.

Version:
1.0
Author:
Peter Runge
See Also:
Serialized Form

Constructor Summary
FileSystemCreationException()
          Constructs a FileSystemCreationException.
FileSystemCreationException(String s)
          Constructs a FileSystemCreationException with the specified detail message.
FileSystemCreationException(String s, Throwable cause)
          Constructs a FileSystemCreationException with a detail message and cause.
FileSystemCreationException(Throwable cause)
          Constructs a FileSystemCreationException with the specified cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FileSystemCreationException

public FileSystemCreationException()
Constructs a FileSystemCreationException.


FileSystemCreationException

public FileSystemCreationException(String s)
Constructs a FileSystemCreationException with the specified detail message.

Parameters:
s - the detail message.

FileSystemCreationException

public FileSystemCreationException(Throwable cause)
Constructs a FileSystemCreationException with the specified cause.

Parameters:
cause - the cause of the exception.

FileSystemCreationException

public FileSystemCreationException(String s,
                                   Throwable cause)
Constructs a FileSystemCreationException with a detail message and cause.

Parameters:
s - the detail message.
cause - the cause of the exception.