Package org.pgcodekeeper.core.exception
Class DirectoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.pgcodekeeper.core.exception.DirectoryException
- All Implemented Interfaces:
Serializable
Exception thrown when encountering directory-related errors during export operations.
Extends IOException to provide specific handling for directory manipulation failures.
- Author:
- Alexander Levsha
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new DirectoryException with no detail message.DirectoryException(String message) Creates a new DirectoryException with the specified detail message.DirectoryException(String message, Throwable cause) Creates a new DirectoryException with the specified detail message and cause.DirectoryException(Throwable cause) Creates a new DirectoryException with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DirectoryException
public DirectoryException()Creates a new DirectoryException with no detail message. -
DirectoryException
Creates a new DirectoryException with the specified detail message.- Parameters:
message- the detail message
-
DirectoryException
Creates a new DirectoryException with the specified cause.- Parameters:
cause- the cause of this exception
-
DirectoryException
Creates a new DirectoryException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-