Class DirectoryHasNoContentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.github.astrapi69.file.exception.DirectoryHasNoContentException
-
- All Implemented Interfaces:
java.io.Serializable
public class DirectoryHasNoContentException extends java.lang.Exception
Exception if the directory has no content.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DirectoryHasNoContentException()
Default constructor.DirectoryHasNoContentException(java.lang.String message)
Constructs a new DirectoryHasNoContentException with the specified detail message.DirectoryHasNoContentException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DirectoryHasNoContentException with the specified detail message and the Throwable.DirectoryHasNoContentException(java.lang.Throwable cause)
Constructs a DirectoryHasNoContentException with the Throwable.
-
-
-
Constructor Detail
-
DirectoryHasNoContentException
public DirectoryHasNoContentException()
Default constructor.
-
DirectoryHasNoContentException
public DirectoryHasNoContentException(java.lang.String message)
Constructs a new DirectoryHasNoContentException with the specified detail message.- Parameters:
message
- The error message.
-
DirectoryHasNoContentException
public DirectoryHasNoContentException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DirectoryHasNoContentException with the specified detail message and the Throwable.- Parameters:
message
- The error message.cause
- The Throwable.
-
DirectoryHasNoContentException
public DirectoryHasNoContentException(java.lang.Throwable cause)
Constructs a DirectoryHasNoContentException with the Throwable.- Parameters:
cause
- The Throwable.
-
-