public class org.eclipse.jetty.http.BadMessageException extends java.lang.RuntimeException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.http.BadMessageException
  super_class: java.lang.RuntimeException
{
  final int _code;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final java.lang.String _reason;
    descriptor: Ljava/lang/String;
    flags: (0x0010) ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.BadMessageException this
         0: .line 34
            aload 0 /* this */
            sipush 400
            aconst_null
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;)V
         1: .line 35
            return
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/BadMessageException;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.BadMessageException this
        start local 1 // int code
         0: .line 39
            aload 0 /* this */
            iload 1 /* code */
            aconst_null
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;)V
         1: .line 40
            return
        end local 1 // int code
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/BadMessageException;
            0    2     1  code  I
    MethodParameters:
      Name  Flags
      code  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.BadMessageException this
        start local 1 // java.lang.String reason
         0: .line 44
            aload 0 /* this */
            sipush 400
            aload 1 /* reason */
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;)V
         1: .line 45
            return
        end local 1 // java.lang.String reason
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jetty/http/BadMessageException;
            0    2     1  reason  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reason  

  public void <init>(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.http.BadMessageException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.Throwable cause
         0: .line 49
            aload 0 /* this */
            sipush 400
            aload 1 /* reason */
            aload 2 /* cause */
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;Ljava/lang/Throwable;)V
         1: .line 50
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // java.lang.String reason
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jetty/http/BadMessageException;
            0    2     1  reason  Ljava/lang/String;
            0    2     2   cause  Ljava/lang/Throwable;
    MethodParameters:
        Name  Flags
      reason  
      cause   

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.http.BadMessageException this
        start local 1 // int code
        start local 2 // java.lang.String reason
         0: .line 54
            aload 0 /* this */
            iload 1 /* code */
            aload 2 /* reason */
            aconst_null
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;Ljava/lang/Throwable;)V
         1: .line 55
            return
        end local 2 // java.lang.String reason
        end local 1 // int code
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jetty/http/BadMessageException;
            0    2     1    code  I
            0    2     2  reason  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      code    
      reason  

  public void <init>(int, java.lang.String, java.lang.Throwable);
    descriptor: (ILjava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.http.BadMessageException this
        start local 1 // int code
        start local 2 // java.lang.String reason
        start local 3 // java.lang.Throwable cause
         0: .line 59
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            iload 1 /* code */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* reason */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 3 /* cause */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 60
            aload 0 /* this */
            iload 1 /* code */
            putfield org.eclipse.jetty.http.BadMessageException._code:I
         2: .line 61
            aload 0 /* this */
            aload 2 /* reason */
            putfield org.eclipse.jetty.http.BadMessageException._reason:Ljava/lang/String;
         3: .line 62
            return
        end local 3 // java.lang.Throwable cause
        end local 2 // java.lang.String reason
        end local 1 // int code
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jetty/http/BadMessageException;
            0    4     1    code  I
            0    4     2  reason  Ljava/lang/String;
            0    4     3   cause  Ljava/lang/Throwable;
    MethodParameters:
        Name  Flags
      code    
      reason  
      cause   

  public int getCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.BadMessageException this
         0: .line 66
            aload 0 /* this */
            getfield org.eclipse.jetty.http.BadMessageException._code:I
            ireturn
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/BadMessageException;

  public java.lang.String getReason();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.BadMessageException this
         0: .line 71
            aload 0 /* this */
            getfield org.eclipse.jetty.http.BadMessageException._reason:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.http.BadMessageException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/BadMessageException;
}
SourceFile: "BadMessageException.java"