what-the-bank/sources/com/adobe/internal/xmp/XMPException.java

17 lines
332 B
Java

package com.adobe.internal.xmp;
/* loaded from: classes.dex */
public class XMPException extends Exception {
public int c;
public XMPException(String str, int i) {
super(str);
this.c = i;
}
public XMPException(String str, int i, Throwable th) {
super(str, th);
this.c = i;
}
}