KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > structures > InvalidByteCodeException


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

7
8 package org.gjt.jclasslib.structures;
9
10 /**
11     Exception relating to errors in the class file format of internal state
12     of the <tt>ClassFile</tt> structure and its substructures.
13  
14     @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
15     @version $Revision: 1.3 $ $Date: 2003/08/18 07:52:54 $
16 */

17 public class InvalidByteCodeException extends Exception JavaDoc {
18
19     /**
20         Constructor.
21      */

22     public InvalidByteCodeException() {
23         super();
24     }
25
26     /**
27         Constructor.
28         @param message
29      */

30     public InvalidByteCodeException(String JavaDoc message) {
31         super(message);
32     }
33 }
34
Popular Tags