PageNotFoundException.java 846 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.pdfg.exception;

import com.adobe.pdfg.exception.AESException;
import com.adobe.pdfg.exception.ErrorCode;
import com.adobe.pdfg.exception.PDFGError;

public class PageNotFoundException
extends AESException {
    static final long serialVersionUID = 1026;

    public PageNotFoundException() {
        super(new PDFGError(ErrorCode.PageNotFoundExceptionMessage));
    }

    public PageNotFoundException(String msg) {
        super(new PDFGError(80000, msg));
    }

    public PageNotFoundException(int errorCode) {
        super(new PDFGError(errorCode));
    }

    public PageNotFoundException(Exception e) {
        super(new PDFGError(80000, e.getMessage()), e);
    }

    public PageNotFoundException(int errorCode, Exception e) {
        super(new PDFGError(errorCode), e);
    }
}