class io.dropwizard.jetty.ZipExceptionHandlingInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.dropwizard.jetty.ZipExceptionHandlingInputStream
  super_class: java.io.InputStream
{
  private final java.io.InputStream delegate;
    descriptor: Ljava/io/InputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String format;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.io.InputStream, java.lang.String);
    descriptor: (Ljava/io/InputStream;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
        start local 1 // java.io.InputStream in
        start local 2 // java.lang.String format
         0: .line 19
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 20
            aload 0 /* this */
            aload 1 /* in */
            putfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
         2: .line 21
            aload 0 /* this */
            aload 2 /* format */
            putfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
         3: .line 22
            return
        end local 2 // java.lang.String format
        end local 1 // java.io.InputStream in
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            0    4     1      in  Ljava/io/InputStream;
            0    4     2  format  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      in      
      format  

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 27
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
         1: ireturn
         2: .line 28
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 4 /* e */
        start local 4 // java.io.IOException e
         3: .line 29
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 4 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 4 // java.io.IOException e
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            0    4     1     b  [B
            0    4     2   off  I
            0    4     3   len  I
            3    4     4     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
         0: .line 36
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
         1: ireturn
         2: .line 37
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 38
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
        start local 1 // long n
         0: .line 45
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            lload 1 /* n */
            invokevirtual java.io.InputStream.skip:(J)J
         1: lreturn
         2: .line 46
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
         3: .line 47
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 3 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 3 // java.io.IOException e
        end local 1 // long n
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            0    4     1     n  J
            3    4     3     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
         0: .line 54
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
         1: ireturn
         2: .line 55
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 56
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
         0: .line 63
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         1: .line 64
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 65
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 1 // java.io.IOException e
         4: .line 67
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public synchronized void mark(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
        start local 1 // int readlimit
         0: .line 71
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            iload 1 /* readlimit */
            invokevirtual java.io.InputStream.mark:(I)V
         1: .line 72
            return
        end local 1 // int readlimit
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            0    2     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
         0: .line 76
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.markSupported:()Z
            ireturn
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
         0: .line 82
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.delegate:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.reset:()V
         1: .line 83
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 84
            aload 0 /* this */
            getfield io.dropwizard.jetty.ZipExceptionHandlingInputStream.format:Ljava/lang/String;
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 1 // java.io.IOException e
         4: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.dropwizard.jetty.ZipExceptionHandlingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/dropwizard/jetty/ZipExceptionHandlingInputStream;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  static org.eclipse.jetty.http.BadMessageException handleException(java.lang.String, java.io.IOException);
    descriptor: (Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.String format
        start local 1 // java.io.IOException e
         0: .line 89
            aload 1 /* e */
            instanceof java.util.zip.ZipException
            ifeq 2
         1: .line 90
            aload 0 /* format */
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.buildBadDataException:(Ljava/lang/String;Ljava/lang/Throwable;)Lorg/eclipse/jetty/http/BadMessageException;
            areturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            instanceof java.io.EOFException
            ifeq 4
         3: .line 92
            aload 0 /* format */
            aload 1 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.buildPrematureEofException:(Ljava/lang/String;Ljava/lang/Throwable;)Lorg/eclipse/jetty/http/BadMessageException;
            areturn
         4: .line 94
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            athrow
        end local 1 // java.io.IOException e
        end local 0 // java.lang.String format
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  format  Ljava/lang/String;
            0    5     1       e  Ljava/io/IOException;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      format  
      e       

  private static org.eclipse.jetty.http.BadMessageException buildBadDataException(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)Lorg/eclipse/jetty/http/BadMessageException;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // java.lang.String format
        start local 1 // java.lang.Throwable cause
         0: .line 99
            new org.eclipse.jetty.http.BadMessageException
            dup
            sipush 400
            new java.lang.StringBuilder
            dup
            ldc "Invalid "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* format */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " data in request"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* cause */
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;Ljava/lang/Throwable;)V
            areturn
        end local 1 // java.lang.Throwable cause
        end local 0 // java.lang.String format
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  format  Ljava/lang/String;
            0    1     1   cause  Ljava/lang/Throwable;
    MethodParameters:
        Name  Flags
      format  
      cause   

  private static org.eclipse.jetty.http.BadMessageException buildPrematureEofException(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)Lorg/eclipse/jetty/http/BadMessageException;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // java.lang.String format
        start local 1 // java.lang.Throwable cause
         0: .line 103
            new org.eclipse.jetty.http.BadMessageException
            dup
            sipush 400
            new java.lang.StringBuilder
            dup
            ldc "Premature end of "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* format */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " data"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* cause */
            invokespecial org.eclipse.jetty.http.BadMessageException.<init>:(ILjava/lang/String;Ljava/lang/Throwable;)V
            areturn
        end local 1 // java.lang.Throwable cause
        end local 0 // java.lang.String format
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  format  Ljava/lang/String;
            0    1     1   cause  Ljava/lang/Throwable;
    MethodParameters:
        Name  Flags
      format  
      cause   
}
SourceFile: "ZipExceptionHandlingInputStream.java"