NotThisProductException.java 860 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 NotThisProductException
extends AESException {
    static final long serialVersionUID = 1002;

    public NotThisProductException() {
        super(new PDFGError(ErrorCode.NotThisProductExceptionMessage));
    }

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

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

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

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