1 11 package org.eclipse.jdt.core.util; 12 13 19 public class ClassFormatException extends Exception { 20 21 public static final int ERROR_MALFORMED_UTF8 = 1; 22 public static final int ERROR_TRUNCATED_INPUT = 2; 23 public static final int INVALID_CONSTANT_POOL_ENTRY = 3; 24 public static final int TOO_MANY_BYTES = 4; 25 public static final int INVALID_ARGUMENTS_FOR_INVOKEINTERFACE = 5; 26 public static final int INVALID_BYTECODE = 6; 27 28 31 public static final int INVALID_TAG_CONSTANT = 7; 32 33 36 public static final int INVALID_MAGIC_NUMBER = 8; 37 38 private static final long serialVersionUID = 6582900558320612988L; 40 44 public ClassFormatException(int errorID) { 45 } 47 48 52 public ClassFormatException(String message) { 53 super(message); 54 } 55 } 56 | Popular Tags |