1 /*2 * @(#)file ParseError.java3 * @(#)author Sun Microsystems, Inc.4 * @(#)version 4.75 * @(#)date 08/02/096 *7 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.8 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.9 *10 */11 12 13 /* Generated By:JavaCC: Do not edit this line. ParseError.java Version 0.7pre1 */14 package com.sun.jmx.snmp.IPAcl;15 16 class ParseError extends Exception {17 public ParseError() {18 }19 public ParseError(String message) {20 super(message);21 }22 }23