Class CellNotFoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.mbenincasa.javaexcelutils.exceptions.CellNotFoundException
All Implemented Interfaces:
Serializable

public class CellNotFoundException extends Exception
This exception signals that the Excel cell was not found
Since:
0.4.1
Author:
Mirko Benincasa
See Also:
  • Constructor Details

    • CellNotFoundException

      public CellNotFoundException()
      Constructs an CellNotFoundException with null as its error detail message.
    • CellNotFoundException

      public CellNotFoundException(String message)
      Constructs an CellNotFoundException with the specified detail message.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • CellNotFoundException

      public CellNotFoundException(String message, Throwable cause)
      Constructs an CellNotFoundException with the specified detail message and cause.

      Note that the detail message associated with cause is not automatically incorporated into this exception's detail message.

      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)