public class org.apache.lucene.index.IndexFormatTooOldException extends java.io.IOException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.index.IndexFormatTooOldException
  super_class: java.io.IOException
{
  private final java.lang.String resourceDescription;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
        start local 1 // java.lang.String resourceDescription
        start local 2 // java.lang.String reason
         0: .line 44
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Format version is not supported (resource "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* resourceDescription */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "): "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 45
            aload 2 /* reason */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ". This version of Lucene only supports indexes created with release 7.0 and later."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 44
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
         3: .line 46
            aload 0 /* this */
            aload 1 /* resourceDescription */
            putfield org.apache.lucene.index.IndexFormatTooOldException.resourceDescription:Ljava/lang/String;
         4: .line 47
            aload 0 /* this */
            aload 2 /* reason */
            putfield org.apache.lucene.index.IndexFormatTooOldException.reason:Ljava/lang/String;
         5: .line 48
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.index.IndexFormatTooOldException.version:Ljava/lang/Integer;
         6: .line 49
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.index.IndexFormatTooOldException.minVersion:Ljava/lang/Integer;
         7: .line 50
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.index.IndexFormatTooOldException.maxVersion:Ljava/lang/Integer;
         8: .line 52
            return
        end local 2 // java.lang.String reason
        end local 1 // java.lang.String resourceDescription
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    9     0                 this  Lorg/apache/lucene/index/IndexFormatTooOldException;
            0    9     1  resourceDescription  Ljava/lang/String;
            0    9     2               reason  Ljava/lang/String;
    MethodParameters:
                     Name  Flags
      resourceDescription  
      reason               

  public void <init>(org.apache.lucene.store.DataInput, java.lang.String);
    descriptor: (Lorg/apache/lucene/store/DataInput;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
        start local 1 // org.apache.lucene.store.DataInput in
        start local 2 // java.lang.String reason
         0: .line 61
            aload 0 /* this */
            aload 1 /* in */
            invokestatic java.util.Objects.toString:(Ljava/lang/Object;)Ljava/lang/String;
            aload 2 /* reason */
            invokespecial org.apache.lucene.index.IndexFormatTooOldException.<init>:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 62
            return
        end local 2 // java.lang.String reason
        end local 1 // org.apache.lucene.store.DataInput in
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/index/IndexFormatTooOldException;
            0    2     1      in  Lorg/apache/lucene/store/DataInput;
            0    2     2  reason  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      in      
      reason  

  public void <init>(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
        start local 1 // java.lang.String resourceDescription
        start local 2 // int version
        start local 3 // int minVersion
        start local 4 // int maxVersion
         0: .line 73
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Format version is not supported (resource "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* resourceDescription */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "): "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 74
            iload 2 /* version */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " (needs to be between "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* minVersion */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* maxVersion */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 75
            ldc "). This version of Lucene only supports indexes created with release 6.0 and later."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 73
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
         4: .line 76
            aload 0 /* this */
            aload 1 /* resourceDescription */
            putfield org.apache.lucene.index.IndexFormatTooOldException.resourceDescription:Ljava/lang/String;
         5: .line 77
            aload 0 /* this */
            iload 2 /* version */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.apache.lucene.index.IndexFormatTooOldException.version:Ljava/lang/Integer;
         6: .line 78
            aload 0 /* this */
            iload 3 /* minVersion */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.apache.lucene.index.IndexFormatTooOldException.minVersion:Ljava/lang/Integer;
         7: .line 79
            aload 0 /* this */
            iload 4 /* maxVersion */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.apache.lucene.index.IndexFormatTooOldException.maxVersion:Ljava/lang/Integer;
         8: .line 80
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.index.IndexFormatTooOldException.reason:Ljava/lang/String;
         9: .line 81
            return
        end local 4 // int maxVersion
        end local 3 // int minVersion
        end local 2 // int version
        end local 1 // java.lang.String resourceDescription
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Lorg/apache/lucene/index/IndexFormatTooOldException;
            0   10     1  resourceDescription  Ljava/lang/String;
            0   10     2              version  I
            0   10     3           minVersion  I
            0   10     4           maxVersion  I
    MethodParameters:
                     Name  Flags
      resourceDescription  
      version              
      minVersion           
      maxVersion           

  public void <init>(org.apache.lucene.store.DataInput, int, int, int);
    descriptor: (Lorg/apache/lucene/store/DataInput;III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
        start local 1 // org.apache.lucene.store.DataInput in
        start local 2 // int version
        start local 3 // int minVersion
        start local 4 // int maxVersion
         0: .line 92
            aload 0 /* this */
            aload 1 /* in */
            invokestatic java.util.Objects.toString:(Ljava/lang/Object;)Ljava/lang/String;
            iload 2 /* version */
            iload 3 /* minVersion */
            iload 4 /* maxVersion */
            invokespecial org.apache.lucene.index.IndexFormatTooOldException.<init>:(Ljava/lang/String;III)V
         1: .line 93
            return
        end local 4 // int maxVersion
        end local 3 // int minVersion
        end local 2 // int version
        end local 1 // org.apache.lucene.store.DataInput in
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/lucene/index/IndexFormatTooOldException;
            0    2     1          in  Lorg/apache/lucene/store/DataInput;
            0    2     2     version  I
            0    2     3  minVersion  I
            0    2     4  maxVersion  I
    MethodParameters:
            Name  Flags
      in          
      version     
      minVersion  
      maxVersion  

  public java.lang.String getResourceDescription();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
         0: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.index.IndexFormatTooOldException.resourceDescription:Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/IndexFormatTooOldException;

  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.apache.lucene.index.IndexFormatTooOldException this
         0: .line 106
            aload 0 /* this */
            getfield org.apache.lucene.index.IndexFormatTooOldException.reason:Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/IndexFormatTooOldException;

  public java.lang.Integer getVersion();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
         0: .line 115
            aload 0 /* this */
            getfield org.apache.lucene.index.IndexFormatTooOldException.version:Ljava/lang/Integer;
            areturn
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/IndexFormatTooOldException;

  public java.lang.Integer getMaxVersion();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
         0: .line 124
            aload 0 /* this */
            getfield org.apache.lucene.index.IndexFormatTooOldException.maxVersion:Ljava/lang/Integer;
            areturn
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/IndexFormatTooOldException;

  public java.lang.Integer getMinVersion();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.IndexFormatTooOldException this
         0: .line 133
            aload 0 /* this */
            getfield org.apache.lucene.index.IndexFormatTooOldException.minVersion:Ljava/lang/Integer;
            areturn
        end local 0 // org.apache.lucene.index.IndexFormatTooOldException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/IndexFormatTooOldException;
}
SourceFile: "IndexFormatTooOldException.java"