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