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

  private org.eclipse.jgit.lib.ObjectId objectId;
    descriptor: Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.RuntimeException.<init>:()V
         1: .line 32
            return
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;

  public void <init>(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
        start local 1 // java.lang.Throwable cause
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.RuntimeException.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* cause */
            invokevirtual org.eclipse.jgit.errors.LargeObjectException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         2: .line 43
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jgit/errors/LargeObjectException;
            0    3     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public void <init>(org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.RuntimeException.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.errors.LargeObjectException.setObjectId:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
         2: .line 54
            return
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;
            0    3     1    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
      Name  Flags
      id    

  public org.eclipse.jgit.lib.ObjectId getObjectId();
    descriptor: ()Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
         0: .line 62
            aload 0 /* this */
            getfield org.eclipse.jgit.errors.LargeObjectException.objectId:Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;

  protected java.lang.String getObjectName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
         0: .line 71
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.errors.LargeObjectException.getObjectId:()Lorg/eclipse/jgit/lib/ObjectId;
            ifnull 2
         1: .line 72
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.errors.LargeObjectException.getObjectId:()Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.lib.ObjectId.name:()Ljava/lang/String;
            areturn
         2: .line 73
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.unknownObject:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;

  public void setObjectId(org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 83
            aload 0 /* this */
            getfield org.eclipse.jgit.errors.LargeObjectException.objectId:Lorg/eclipse/jgit/lib/ObjectId;
            ifnonnull 2
         1: .line 84
            aload 0 /* this */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.AnyObjectId.copy:()Lorg/eclipse/jgit/lib/ObjectId;
            putfield org.eclipse.jgit.errors.LargeObjectException.objectId:Lorg/eclipse/jgit/lib/ObjectId;
         2: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;
            0    3     1    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
      Name  Flags
      id    

  public java.lang.String getMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.errors.LargeObjectException this
         0: .line 90
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.largeObjectException:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         1: .line 91
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.errors.LargeObjectException.getObjectName:()Ljava/lang/String;
            aastore
         2: .line 90
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.errors.LargeObjectException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/errors/LargeObjectException;
}
SourceFile: "LargeObjectException.java"
NestMembers:
  org.eclipse.jgit.errors.LargeObjectException$ExceedsByteArrayLimit  org.eclipse.jgit.errors.LargeObjectException$ExceedsLimit  org.eclipse.jgit.errors.LargeObjectException$OutOfMemory
InnerClasses:
  public ExceedsByteArrayLimit = org.eclipse.jgit.errors.LargeObjectException$ExceedsByteArrayLimit of org.eclipse.jgit.errors.LargeObjectException
  public ExceedsLimit = org.eclipse.jgit.errors.LargeObjectException$ExceedsLimit of org.eclipse.jgit.errors.LargeObjectException
  public OutOfMemory = org.eclipse.jgit.errors.LargeObjectException$OutOfMemory of org.eclipse.jgit.errors.LargeObjectException