langtools/src/share/classes/com/sun/tools/javap/InternalError.java
changeset 1870 57a1138dffc8
parent 735 372aa565a221
child 2212 1d3dc0e0ba0c
equal deleted inserted replaced
1869:0e193a8f3520 1870:57a1138dffc8
    30  *  you write code that depends on this, you do so at your own risk.
    30  *  you write code that depends on this, you do so at your own risk.
    31  *  This code and its internal interfaces are subject to change or
    31  *  This code and its internal interfaces are subject to change or
    32  *  deletion without notice.</b>
    32  *  deletion without notice.</b>
    33  */
    33  */
    34 public class InternalError extends Error {
    34 public class InternalError extends Error {
       
    35     private static final long serialVersionUID = 8114054446416187030L;
    35     InternalError(Throwable t, Object... args) {
    36     InternalError(Throwable t, Object... args) {
    36         super("Internal error", t);
    37         super("Internal error", t);
    37         this.args = args;
    38         this.args = args;
    38     }
    39     }
    39 
    40