src/share/classes/com/sun/tools/classfile/ConstantPool.java

changeset 198
b4b1f7732289
parent 54
eaf608c64fec
child 229
03bcd66bd8e7
     1.1 --- a/src/share/classes/com/sun/tools/classfile/ConstantPool.java	Tue Jan 20 15:17:45 2009 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/classfile/ConstantPool.java	Tue Jan 20 18:23:13 2009 -0800
     1.3 @@ -38,6 +38,7 @@
     1.4  public class ConstantPool {
     1.5  
     1.6      public class InvalidIndex extends ConstantPoolException {
     1.7 +        private static final long serialVersionUID = -4350294289300939730L;
     1.8          InvalidIndex(int index) {
     1.9              super(index);
    1.10          }
    1.11 @@ -50,6 +51,7 @@
    1.12      }
    1.13  
    1.14      public class UnexpectedEntry extends ConstantPoolException {
    1.15 +        private static final long serialVersionUID = 6986335935377933211L;
    1.16          UnexpectedEntry(int index, int expected_tag, int found_tag) {
    1.17              super(index);
    1.18              this.expected_tag = expected_tag;
    1.19 @@ -67,6 +69,7 @@
    1.20      }
    1.21  
    1.22      public class InvalidEntry extends ConstantPoolException {
    1.23 +        private static final long serialVersionUID = 1000087545585204447L;
    1.24          InvalidEntry(int index, int tag) {
    1.25              super(index);
    1.26              this.tag = tag;
    1.27 @@ -82,6 +85,7 @@
    1.28      }
    1.29  
    1.30      public class EntryNotFound extends ConstantPoolException {
    1.31 +        private static final long serialVersionUID = 2885537606468581850L;
    1.32          EntryNotFound(Object value) {
    1.33              super(-1);
    1.34              this.value = value;

mercurial