public class io.vertx.serviceproxy.ServiceExceptionMessageCodec implements io.vertx.core.eventbus.MessageCodec<io.vertx.serviceproxy.ServiceException, io.vertx.serviceproxy.ServiceException>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.serviceproxy.ServiceExceptionMessageCodec
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
         0: .line 13
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;

  public void encodeToWire(io.vertx.core.buffer.Buffer, io.vertx.serviceproxy.ServiceException);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/serviceproxy/ServiceException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
        start local 1 // io.vertx.core.buffer.Buffer buffer
        start local 2 // io.vertx.serviceproxy.ServiceException body
         0: .line 17
            aload 1 /* buffer */
            aload 2 /* body */
            invokevirtual io.vertx.serviceproxy.ServiceException.failureCode:()I
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            pop
         1: .line 18
            aload 2 /* body */
            invokevirtual io.vertx.serviceproxy.ServiceException.getMessage:()Ljava/lang/String;
            ifnonnull 4
         2: .line 19
            aload 1 /* buffer */
            iconst_0
            invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
            pop
         3: .line 20
            goto 8
         4: .line 21
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            iconst_1
            invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
            pop
         5: .line 22
            aload 2 /* body */
            invokevirtual io.vertx.serviceproxy.ServiceException.getMessage:()Ljava/lang/String;
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 3 /* encoded */
        start local 3 // byte[] encoded
         6: .line 23
            aload 1 /* buffer */
            aload 3 /* encoded */
            arraylength
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            pop
         7: .line 24
            aload 1 /* buffer */
            aload 3 /* encoded */
            invokeinterface io.vertx.core.buffer.Buffer.appendBytes:([B)Lio/vertx/core/buffer/Buffer;
            pop
        end local 3 // byte[] encoded
         8: .line 26
      StackMap locals:
      StackMap stack:
            aload 2 /* body */
            invokevirtual io.vertx.serviceproxy.ServiceException.getDebugInfo:()Lio/vertx/core/json/JsonObject;
            aload 1 /* buffer */
            invokevirtual io.vertx.core.json.JsonObject.writeToBuffer:(Lio/vertx/core/buffer/Buffer;)V
         9: .line 27
            return
        end local 2 // io.vertx.serviceproxy.ServiceException body
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;
            0   10     1   buffer  Lio/vertx/core/buffer/Buffer;
            0   10     2     body  Lio/vertx/serviceproxy/ServiceException;
            6    8     3  encoded  [B
    MethodParameters:
        Name  Flags
      buffer  
      body    

  public io.vertx.serviceproxy.ServiceException decodeFromWire(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)Lio/vertx/serviceproxy/ServiceException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buffer
         0: .line 31
            aload 2 /* buffer */
            iload 1 /* pos */
            invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
            istore 3 /* failureCode */
        start local 3 // int failureCode
         1: .line 32
            iinc 1 /* pos */ 4
         2: .line 33
            aload 2 /* buffer */
            iload 1 /* pos */
            invokeinterface io.vertx.core.buffer.Buffer.getByte:(I)B
            ifne 3
            iconst_1
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* isNull */
        start local 4 // boolean isNull
         5: .line 34
            iinc 1 /* pos */ 1
         6: .line 36
            iload 4 /* isNull */
            ifne 13
         7: .line 37
            aload 2 /* buffer */
            iload 1 /* pos */
            invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
            istore 6 /* strLength */
        start local 6 // int strLength
         8: .line 38
            iinc 1 /* pos */ 4
         9: .line 39
            aload 2 /* buffer */
            iload 1 /* pos */
            iload 1 /* pos */
            iload 6 /* strLength */
            iadd
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:(II)[B
            astore 7 /* bytes */
        start local 7 // byte[] bytes
        10: .line 40
            new java.lang.String
            dup
            aload 7 /* bytes */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            astore 5 /* message */
        start local 5 // java.lang.String message
        11: .line 41
            iload 1 /* pos */
            iload 6 /* strLength */
            iadd
            istore 1 /* pos */
        end local 7 // byte[] bytes
        end local 6 // int strLength
        12: .line 42
            goto 14
        end local 5 // java.lang.String message
        13: .line 43
      StackMap locals: int
      StackMap stack:
            aconst_null
            astore 5 /* message */
        start local 5 // java.lang.String message
        14: .line 45
      StackMap locals: java.lang.String
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 6 /* debugInfo */
        start local 6 // io.vertx.core.json.JsonObject debugInfo
        15: .line 46
            aload 6 /* debugInfo */
            iload 1 /* pos */
            aload 2 /* buffer */
            invokevirtual io.vertx.core.json.JsonObject.readFromBuffer:(ILio/vertx/core/buffer/Buffer;)I
            pop
        16: .line 47
            new io.vertx.serviceproxy.ServiceException
            dup
            iload 3 /* failureCode */
            aload 5 /* message */
            aload 6 /* debugInfo */
            invokespecial io.vertx.serviceproxy.ServiceException.<init>:(ILjava/lang/String;Lio/vertx/core/json/JsonObject;)V
            areturn
        end local 6 // io.vertx.core.json.JsonObject debugInfo
        end local 5 // java.lang.String message
        end local 4 // boolean isNull
        end local 3 // int failureCode
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // int pos
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;
            0   17     1          pos  I
            0   17     2       buffer  Lio/vertx/core/buffer/Buffer;
            1   17     3  failureCode  I
            5   17     4       isNull  Z
           11   13     5      message  Ljava/lang/String;
           14   17     5      message  Ljava/lang/String;
            8   12     6    strLength  I
           10   12     7        bytes  [B
           15   17     6    debugInfo  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      pos     
      buffer  

  public io.vertx.serviceproxy.ServiceException transform(io.vertx.serviceproxy.ServiceException);
    descriptor: (Lio/vertx/serviceproxy/ServiceException;)Lio/vertx/serviceproxy/ServiceException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
        start local 1 // io.vertx.serviceproxy.ServiceException exception
         0: .line 52
            aload 1 /* exception */
            areturn
        end local 1 // io.vertx.serviceproxy.ServiceException exception
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;
            0    1     1  exception  Lio/vertx/serviceproxy/ServiceException;
    MethodParameters:
           Name  Flags
      exception  

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
         0: .line 57
            ldc "ServiceException"
            areturn
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;

  public byte systemCodecID();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
         0: .line 62
            iconst_m1
            ireturn
        end local 0 // io.vertx.serviceproxy.ServiceExceptionMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/serviceproxy/ServiceExceptionMessageCodec;

  public void encodeToWire(io.vertx.core.buffer.Buffer, java.lang.Object);
    descriptor: (Lio/vertx/core/buffer/Buffer;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast io.vertx.serviceproxy.ServiceException
            invokevirtual io.vertx.serviceproxy.ServiceExceptionMessageCodec.encodeToWire:(Lio/vertx/core/buffer/Buffer;Lio/vertx/serviceproxy/ServiceException;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object transform(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.serviceproxy.ServiceException
            invokevirtual io.vertx.serviceproxy.ServiceExceptionMessageCodec.transform:(Lio/vertx/serviceproxy/ServiceException;)Lio/vertx/serviceproxy/ServiceException;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object decodeFromWire(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            invokevirtual io.vertx.serviceproxy.ServiceExceptionMessageCodec.decodeFromWire:(ILio/vertx/core/buffer/Buffer;)Lio/vertx/serviceproxy/ServiceException;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec<Lio/vertx/serviceproxy/ServiceException;Lio/vertx/serviceproxy/ServiceException;>;
SourceFile: "ServiceExceptionMessageCodec.java"