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

    public QueueLookupException() {
        super(new PDFGError(ErrorCode.QueueLookupExceptionMessage));
    }

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

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

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

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