Rabbit-R1/android (non root)/java/sources/androidx/media3/exoplayer/drm/UnsupportedDrmException.java
2024-05-21 17:08:36 -04:00

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;
}
}