XMPException.java 480 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.internal.xmp;

public class XMPException
extends Exception {
    private int errorCode;

    public XMPException(String message, int errorCode) {
        super(message);
        this.errorCode = errorCode;
    }

    public XMPException(String message, int errorCode, Throwable t) {
        super(message, t);
        this.errorCode = errorCode;
    }

    public int getErrorCode() {
        return this.errorCode;
    }
}