org.eadge.extractpdfexcel.exception.NoPageAtIndexException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdf-to-excel Show documentation
Show all versions of pdf-to-excel Show documentation
A Java library used to convert PDF to Excel.
The newest version!
package org.eadge.extractpdfexcel.exception;
/**
* Created by eadgyo on 16/07/16.
*
*/
public class NoPageAtIndexException extends Exception
{
private int page;
public NoPageAtIndexException(int page)
{
this.page = page;
}
@Override
public String getMessage()
{
return "No page at index: " + page;
}
}