Class NotFileException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- lumis.portal.filesystem.exception.NotFileException
-
- All Implemented Interfaces:
Serializable
@StableMinor(version="14.0", sinceVersion="8.0") public class NotFileException extends IOException
Thrown when anIFile
is not a file.- Since:
- 8.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFileException()
Creates a new instance with no detail message and no cause.NotFileException(String message)
Creates a new instance with the given detail message.NotFileException(String message, Throwable cause)
Creates a new instance with the given detail message and cause.NotFileException(Throwable cause)
Creates a new instance with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotFileException
public NotFileException()
Creates a new instance with no detail message and no cause.- Since:
- 8.0.0
-
NotFileException
public NotFileException(String message, 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
-
NotFileException
public NotFileException(String message)
Creates a new instance with the given detail message.- Parameters:
message
- the detail message.- Since:
- 8.0.0
-
NotFileException
public NotFileException(Throwable cause)
Creates a new instance with the given cause.- Parameters:
cause
- the cause.- Since:
- 8.0.0
-
-