1 25 26 package org.netbeans.modules.classfile; 27 28 import java.io.IOException ; 29 30 35 public final class InvalidClassFormatException extends IOException { 36 40 InvalidClassFormatException() { 41 super(); 42 } 43 44 53 InvalidClassFormatException(String s) { 54 super(s); 55 } 56 57 58 64 InvalidClassFormatException(Throwable cause) { 65 super(cause.getLocalizedMessage()); 66 initCause(cause); 67 } 68 69 private static final long serialVersionUID = -7043855006167696889L; 70 } 71 72 | Popular Tags |