java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.pervasive.datarush.io.FileAlreadyExistsException
- All Implemented Interfaces:
Serializable
An I/O exception indicating the file in question already exists.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.FileAlreadyExistsException(String message) Constructor providing an error message.FileAlreadyExistsException(String message, Throwable cause) Constructor providing an error message and a 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 Details
-
FileAlreadyExistsException
public FileAlreadyExistsException()Default constructor. -
FileAlreadyExistsException
Constructor providing an error message and a cause.- Parameters:
message- error messagecause- original cause of the exception
-
FileAlreadyExistsException
Constructor providing an error message.- Parameters:
message- error message
-
FileAlreadyExistsException
Constructor providing a original cause of the error.- Parameters:
cause- original cause of the exception
-