All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eadge.extractpdfexcel.exception.NoPageAtIndexException Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy