Class DirectoryException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.pgcodekeeper.core.model.exporter.DirectoryException
All Implemented Interfaces:
Serializable

public class DirectoryException extends IOException
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 Details

    • DirectoryException

      public DirectoryException()
      Creates a new DirectoryException with no detail message.
    • DirectoryException

      public DirectoryException(String message)
      Creates a new DirectoryException with the specified detail message.
      Parameters:
      message - the detail message
    • DirectoryException

      public DirectoryException(Throwable cause)
      Creates a new DirectoryException with the specified cause.
      Parameters:
      cause - the cause of this exception
    • DirectoryException

      public DirectoryException(String message, Throwable cause)
      Creates a new DirectoryException with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause of this exception