mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
11 lines
252 B
Java
11 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;
|
|
}
|
|
}
|