mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
30 lines
929 B
Java
30 lines
929 B
Java
package androidx.media3.exoplayer.drm;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class UnsupportedDrmException extends Exception {
|
|
public static final int REASON_INSTANTIATION_ERROR = 2;
|
|
public static final int REASON_UNSUPPORTED_SCHEME = 1;
|
|
public final int reason;
|
|
|
|
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes2.dex */
|
|
public @interface Reason {
|
|
}
|
|
|
|
public UnsupportedDrmException(int i) {
|
|
this.reason = i;
|
|
}
|
|
|
|
public UnsupportedDrmException(int i, Exception exc) {
|
|
super(exc);
|
|
this.reason = i;
|
|
}
|
|
}
|