Package ai.libs.jaicore.basic
Class FileIsDirectoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- ai.libs.jaicore.basic.FileIsDirectoryException
-
- All Implemented Interfaces:
java.io.Serializable
public class FileIsDirectoryException extends java.io.IOExceptionThis exception may be thrown if a File object points to a directory instead of a file.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileIsDirectoryException()Standard c'tor.FileIsDirectoryException(java.lang.String message)Constructor with a message.FileIsDirectoryException(java.lang.String message, java.lang.Throwable cause)Constructor with message and a throwable as a cause.
-
-
-
Constructor Detail
-
FileIsDirectoryException
public FileIsDirectoryException()
Standard c'tor.
-
FileIsDirectoryException
public FileIsDirectoryException(java.lang.String message)
Constructor with a message.- Parameters:
message- The message.
-
FileIsDirectoryException
public FileIsDirectoryException(java.lang.String message, java.lang.Throwable cause)Constructor with message and a throwable as a cause.- Parameters:
message- The message.cause- The cause of this exception.
-
-