langtools/src/share/classes/com/sun/tools/classfile/StackMapTable_attribute.java
changeset 1870 57a1138dffc8
parent 735 372aa565a221
child 2212 1d3dc0e0ba0c
equal deleted inserted replaced
1869:0e193a8f3520 1870:57a1138dffc8
    35  *  This code and its internal interfaces are subject to change or
    35  *  This code and its internal interfaces are subject to change or
    36  *  deletion without notice.</b>
    36  *  deletion without notice.</b>
    37  */
    37  */
    38 public class StackMapTable_attribute extends Attribute {
    38 public class StackMapTable_attribute extends Attribute {
    39     static class InvalidStackMap extends AttributeException {
    39     static class InvalidStackMap extends AttributeException {
       
    40         private static final long serialVersionUID = -5659038410855089780L;
    40         InvalidStackMap(String msg) {
    41         InvalidStackMap(String msg) {
    41             super(msg);
    42             super(msg);
    42         }
    43         }
    43     }
    44     }
    44 
    45