NotAPDFException.java
811 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 NotAPDFException
extends AESException {
static final long serialVersionUID = 1025;
public NotAPDFException() {
super(new PDFGError(ErrorCode.NotAPDFExceptionMessage));
}
public NotAPDFException(String msg) {
super(new PDFGError(80000, msg));
}
public NotAPDFException(int errorCode) {
super(new PDFGError(errorCode));
}
public NotAPDFException(Exception e) {
super(new PDFGError(80000, e.getMessage()), e);
}
public NotAPDFException(int errorCode, Exception e) {
super(new PDFGError(errorCode), e);
}
}