Class FileIsNotDirectoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- lumis.portal.filesystem.exception.FileIsNotDirectoryException
-
- All Implemented Interfaces:
java.io.Serializable
@StableMinor(version="16.0", sinceVersion="8.0") public class FileIsNotDirectoryException extends java.io.IOException
Thrown when anIFile
is not a directory.- Since:
- 8.0.0
- Version:
- $Revision: 25808 $ $Date: 2023-07-04 15:20:55 -0300 (Tue, 04 Jul 2023) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileIsNotDirectoryException()
Creates a new instance with no detail message and no cause.FileIsNotDirectoryException(java.lang.String message)
Creates a new instance with the given detail message.FileIsNotDirectoryException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance with the given detail message and cause.FileIsNotDirectoryException(java.lang.Throwable cause)
Creates a new instance with the given cause.
-
-
-
Constructor Detail
-
FileIsNotDirectoryException
public FileIsNotDirectoryException()
Creates a new instance with no detail message and no cause.- Since:
- 8.0.0
-
FileIsNotDirectoryException
public FileIsNotDirectoryException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance with the given detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.- Since:
- 8.0.0
-
FileIsNotDirectoryException
public FileIsNotDirectoryException(java.lang.String message)
Creates a new instance with the given detail message.- Parameters:
message
- the detail message.- Since:
- 8.0.0
-
FileIsNotDirectoryException
public FileIsNotDirectoryException(java.lang.Throwable cause)
Creates a new instance with the given cause.- Parameters:
cause
- the cause.- Since:
- 8.0.0
-
-