Package ch.rabanti.picoxlsx4j.exception
Class FormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ch.rabanti.picoxlsx4j.exception.FormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class FormatException extends java.lang.RuntimeExceptionClass for exceptions regarding format error incidents- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormatException()Default constructorFormatException(java.lang.String title, java.lang.String message)Constructor with passed messageFormatException(java.lang.String title, java.lang.String message, java.lang.Exception inner)Constructor with passed message and inner
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetExceptionTitle()Gets the title of the exceptionjava.lang.ExceptiongetInnerException()Gets the inner exception
-
-
-
Constructor Detail
-
FormatException
public FormatException()
Default constructor
-
FormatException
public FormatException(java.lang.String title, java.lang.String message)Constructor with passed message- Parameters:
title- Title of the exceptionmessage- Message of the exception
-
FormatException
public FormatException(java.lang.String title, java.lang.String message, java.lang.Exception inner)Constructor with passed message and inner- Parameters:
title- Title of the exceptionmessage- Message of the exceptioninner- Inner exception
-
-