public final class android.app.AuthenticationRequiredException extends java.lang.SecurityException implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.app.AuthenticationRequiredException
  super_class: java.lang.SecurityException
{
  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "AuthenticationRequiredException"

  private final android.app.PendingIntent mUserAction;
    descriptor: Landroid/app/PendingIntent;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static final android.os.Parcelable$Creator<android.app.AuthenticationRequiredException> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/app/AuthenticationRequiredException;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 85
            new android.app.AuthenticationRequiredException$1
            dup
            invokespecial android.app.AuthenticationRequiredException$1.<init>:()V
         1: .line 84
            putstatic android.app.AuthenticationRequiredException.CREATOR:Landroid/os/Parcelable$Creator;
         2: .line 95
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.app.AuthenticationRequiredException this
        start local 1 // android.os.Parcel in
         0: .line 46
            aload 0 /* this */
            new java.lang.SecurityException
            dup
            aload 1 /* in */
            invokevirtual android.os.Parcel.readString:()Ljava/lang/String;
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;)V
            getstatic android.app.PendingIntent.CREATOR:Landroid/os/Parcelable$Creator;
            aload 1 /* in */
            invokeinterface android.os.Parcelable$Creator.createFromParcel:(Landroid/os/Parcel;)Ljava/lang/Object;
            checkcast android.app.PendingIntent
            invokespecial android.app.AuthenticationRequiredException.<init>:(Ljava/lang/Throwable;Landroid/app/PendingIntent;)V
         1: .line 47
            return
        end local 1 // android.os.Parcel in
        end local 0 // android.app.AuthenticationRequiredException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/app/AuthenticationRequiredException;
            0    2     1    in  Landroid/os/Parcel;
    MethodParameters:
      Name  Flags
      in    

  public void <init>(java.lang.Throwable, android.app.PendingIntent);
    descriptor: (Ljava/lang/Throwable;Landroid/app/PendingIntent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.app.AuthenticationRequiredException this
        start local 1 // java.lang.Throwable cause
        start local 2 // android.app.PendingIntent userAction
         0: .line 62
            aload 0 /* this */
            aload 1 /* cause */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;)V
         1: .line 63
            aload 0 /* this */
            aload 2 /* userAction */
            invokestatic com.android.internal.util.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast android.app.PendingIntent
            putfield android.app.AuthenticationRequiredException.mUserAction:Landroid/app/PendingIntent;
         2: .line 64
            return
        end local 2 // android.app.PendingIntent userAction
        end local 1 // java.lang.Throwable cause
        end local 0 // android.app.AuthenticationRequiredException this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Landroid/app/AuthenticationRequiredException;
            0    3     1       cause  Ljava/lang/Throwable;
            0    3     2  userAction  Landroid/app/PendingIntent;
    MethodParameters:
            Name  Flags
      cause       
      userAction  

  public android.app.PendingIntent getUserAction();
    descriptor: ()Landroid/app/PendingIntent;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.AuthenticationRequiredException this
         0: .line 70
            aload 0 /* this */
            getfield android.app.AuthenticationRequiredException.mUserAction:Landroid/app/PendingIntent;
            areturn
        end local 0 // android.app.AuthenticationRequiredException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/AuthenticationRequiredException;

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.AuthenticationRequiredException this
         0: .line 75
            iconst_0
            ireturn
        end local 0 // android.app.AuthenticationRequiredException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/AuthenticationRequiredException;

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.app.AuthenticationRequiredException this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 80
            aload 1 /* dest */
            aload 0 /* this */
            invokevirtual android.app.AuthenticationRequiredException.getMessage:()Ljava/lang/String;
            invokevirtual android.os.Parcel.writeString:(Ljava/lang/String;)V
         1: .line 81
            aload 0 /* this */
            getfield android.app.AuthenticationRequiredException.mUserAction:Landroid/app/PendingIntent;
            aload 1 /* dest */
            iload 2 /* flags */
            invokevirtual android.app.PendingIntent.writeToParcel:(Landroid/os/Parcel;I)V
         2: .line 82
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.app.AuthenticationRequiredException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/app/AuthenticationRequiredException;
            0    3     1   dest  Landroid/os/Parcel;
            0    3     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  
}
SourceFile: "AuthenticationRequiredException.java"
NestMembers:
  android.app.AuthenticationRequiredException$1
InnerClasses:
  android.app.AuthenticationRequiredException$1
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable