mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
12 lines
252 B
Java
12 lines
252 B
Java
|
package androidx.media3.decoder;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class CryptoException extends Exception {
|
||
|
public final int errorCode;
|
||
|
|
||
|
public CryptoException(int i, String str) {
|
||
|
super(str);
|
||
|
this.errorCode = i;
|
||
|
}
|
||
|
}
|