1 package jas;2 3 /**4 * Error thrown on problems encountered while running the5 * basic jas assembler itself.6 * @author $Author: fqian $7 * @version $Revision: 1.1 $8 */9 10 public class jasError extends Exception 11 {12 public jasError() { super(); }13 public jasError(String s) { super(s); }14 }15