Class FileAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.mbenincasa.javaexcelutils.exceptions.FileAlreadyExistsException
- All Implemented Interfaces:
Serializable
This exception signals that the file already exists
- Since:
- 0.1.0
- Author:
- Mirko Benincasa
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFileAlreadyExistsException
(String message) Constructs anFileAlreadyExistsException
with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileAlreadyExistsException
Constructs anFileAlreadyExistsException
with the specified detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-