All Downloads are FREE. Search and download functionalities are using the official Maven repository.

opu.lljvm-python.0.2.0-EXPERIMENTAL.source-code.jasError Maven / Gradle / Ivy

The newest version!
package jas;

/**
 * Error thrown on problems encountered while running the
 * basic jas assembler itself.
 * @author $Author: jonmeyerny $
 * @version $Revision: 1.1 $
 */

public class jasError extends Exception
{
  public boolean numTag;
  public jasError() { super(); numTag = false; }
  public jasError(String s) { super(s);  numTag = false; }
  public jasError(String s, boolean isNum) { super(s); numTag = true; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy