at.ac.tuwien.dslab.rmi.common.impl
Class FileManException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by at.ac.tuwien.dslab.rmi.common.impl.FileManException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DocumentAlreadyExistsException, DocumentNotExistsException, InvalidCommandException, RepositoryExistsException, RepositoryNamingException, RepositoryNotExistsException, UserAccessException

public class FileManException
extends java.lang.Exception

The FileManException is the basic exception within the DSGFileMan system.

See Also:
Serialized Form

Constructor Summary
FileManException(java.lang.String message)
          Creates a new FileManException with a given error message text.
FileManException(java.lang.String message, java.lang.Throwable cause)
          Creates a new FileManException with a given error message and a cause for this exception.
 
Method Summary
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FileManException

public FileManException(java.lang.String message)
Creates a new FileManException with a given error message text.

Parameters:
message - The error message text.

FileManException

public FileManException(java.lang.String message,
                        java.lang.Throwable cause)
Creates a new FileManException with a given error message and a cause for this exception.

Parameters:
message - The error message text.
cause - The cause of this exception.