- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.pervasive.datarush.io.FileAlreadyExistsException
-
- All Implemented Interfaces:
Serializable
public class FileAlreadyExistsException extends IOException
An I/O exception indicating the file in question already exists.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileAlreadyExistsException()
Default constructor.FileAlreadyExistsException(String message)
Constructor providing an error message.FileAlreadyExistsException(String message, Throwable cause)
Constructor providing an error message and a cause.FileAlreadyExistsException(Throwable cause)
Constructor providing a original cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileAlreadyExistsException
public FileAlreadyExistsException()
Default constructor.
-
FileAlreadyExistsException
public FileAlreadyExistsException(String message, Throwable cause)
Constructor providing an error message and a cause.- Parameters:
message
- error messagecause
- original cause of the exception
-
FileAlreadyExistsException
public FileAlreadyExistsException(String message)
Constructor providing an error message.- Parameters:
message
- error message
-
FileAlreadyExistsException
public FileAlreadyExistsException(Throwable cause)
Constructor providing a original cause of the error.- Parameters:
cause
- original cause of the exception
-
-