Class SheetNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.mbenincasa.javaexcelutils.exceptions.SheetNotFoundException
- All Implemented Interfaces:
Serializable
This exception signals that the Excel sheet was not found
- Since:
- 0.1.0
- Author:
- Mirko Benincasa
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anSheetNotFoundException
withnull
as its error detail message.SheetNotFoundException
(String message) Constructs anSheetNotFoundException
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
-
SheetNotFoundException
public SheetNotFoundException()Constructs anSheetNotFoundException
withnull
as its error detail message. -
SheetNotFoundException
Constructs anSheetNotFoundException
with the specified detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-