public class javassist.CannotCompileException extends java.lang.Exception
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javassist.CannotCompileException
  super_class: java.lang.Exception
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private java.lang.Throwable myCause;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String message;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  public synchronized java.lang.Throwable getCause();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javassist.CannotCompileException this
         0: .line 35
            aload 0 /* this */
            getfield javassist.CannotCompileException.myCause:Ljava/lang/Throwable;
            aload 0 /* this */
            if_acmpne 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javassist.CannotCompileException.myCause:Ljava/lang/Throwable;
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: areturn
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavassist/CannotCompileException;

  public synchronized java.lang.Throwable initCause(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Ljava/lang/Throwable;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.Throwable cause
         0: .line 44
            aload 0 /* this */
            aload 1 /* cause */
            putfield javassist.CannotCompileException.myCause:Ljava/lang/Throwable;
         1: .line 45
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Throwable cause
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavassist/CannotCompileException;
            0    2     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public java.lang.String getReason();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javassist.CannotCompileException this
         0: .line 54
            aload 0 /* this */
            getfield javassist.CannotCompileException.message:Ljava/lang/String;
            ifnull 2
         1: .line 55
            aload 0 /* this */
            getfield javassist.CannotCompileException.message:Ljava/lang/String;
            areturn
         2: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javassist.CannotCompileException.toString:()Ljava/lang/String;
            areturn
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavassist/CannotCompileException;

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.String msg
         0: .line 65
            aload 0 /* this */
            aload 1 /* msg */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
         1: .line 66
            aload 0 /* this */
            aload 1 /* msg */
            putfield javassist.CannotCompileException.message:Ljava/lang/String;
         2: .line 67
            aload 0 /* this */
            aconst_null
            invokevirtual javassist.CannotCompileException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         3: .line 68
            return
        end local 1 // java.lang.String msg
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavassist/CannotCompileException;
            0    4     1   msg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      msg   

  public void <init>(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.Throwable e
         0: .line 77
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "by "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual java.lang.Throwable.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
         1: .line 78
            aload 0 /* this */
            aconst_null
            putfield javassist.CannotCompileException.message:Ljava/lang/String;
         2: .line 79
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual javassist.CannotCompileException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         3: .line 80
            return
        end local 1 // java.lang.Throwable e
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavassist/CannotCompileException;
            0    4     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  public void <init>(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.String msg
        start local 2 // java.lang.Throwable e
         0: .line 90
            aload 0 /* this */
            aload 1 /* msg */
            invokespecial javassist.CannotCompileException.<init>:(Ljava/lang/String;)V
         1: .line 91
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual javassist.CannotCompileException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         2: .line 92
            return
        end local 2 // java.lang.Throwable e
        end local 1 // java.lang.String msg
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavassist/CannotCompileException;
            0    3     1   msg  Ljava/lang/String;
            0    3     2     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      msg   
      e     

  public void <init>(javassist.NotFoundException);
    descriptor: (Ljavassist/NotFoundException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javassist.CannotCompileException this
        start local 1 // javassist.NotFoundException e
         0: .line 99
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "cannot find "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual javassist.NotFoundException.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial javassist.CannotCompileException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 100
            return
        end local 1 // javassist.NotFoundException e
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavassist/CannotCompileException;
            0    2     1     e  Ljavassist/NotFoundException;
    MethodParameters:
      Name  Flags
      e     

  public void <init>(javassist.compiler.CompileError);
    descriptor: (Ljavassist/compiler/CompileError;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javassist.CannotCompileException this
        start local 1 // javassist.compiler.CompileError e
         0: .line 106
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "[source error] "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual javassist.compiler.CompileError.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial javassist.CannotCompileException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 107
            return
        end local 1 // javassist.compiler.CompileError e
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavassist/CannotCompileException;
            0    2     1     e  Ljavassist/compiler/CompileError;
    MethodParameters:
      Name  Flags
      e     

  public void <init>(java.lang.ClassNotFoundException, java.lang.String);
    descriptor: (Ljava/lang/ClassNotFoundException;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.ClassNotFoundException e
        start local 2 // java.lang.String name
         0: .line 114
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "cannot find "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial javassist.CannotCompileException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 115
            return
        end local 2 // java.lang.String name
        end local 1 // java.lang.ClassNotFoundException e
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavassist/CannotCompileException;
            0    2     1     e  Ljava/lang/ClassNotFoundException;
            0    2     2  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      e     
      name  

  public void <init>(java.lang.ClassFormatError, java.lang.String);
    descriptor: (Ljava/lang/ClassFormatError;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javassist.CannotCompileException this
        start local 1 // java.lang.ClassFormatError e
        start local 2 // java.lang.String name
         0: .line 121
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "invalid class format: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial javassist.CannotCompileException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 122
            return
        end local 2 // java.lang.String name
        end local 1 // java.lang.ClassFormatError e
        end local 0 // javassist.CannotCompileException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavassist/CannotCompileException;
            0    2     1     e  Ljava/lang/ClassFormatError;
            0    2     2  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      e     
      name  
}
SourceFile: "CannotCompileException.java"