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

17 lines
332 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}