KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jas > jasError


1 package jas;
2
3 /**
4  * Error thrown on problems encountered while running the
5  * basic jas assembler itself.
6  * @author $Author: fqian $
7  * @version $Revision: 1.1 $
8  */

9
10 public class jasError extends Exception JavaDoc
11 {
12   public jasError() { super(); }
13   public jasError(String JavaDoc s) { super(s); }
14 }
15
Popular Tags