Algernon Software

org.algernon.exception
Class AlgernonException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.algernon.exception.AlgernonException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AlgernonCompilerException, AlgernonDataException, AlgernonRuntimeException

public abstract class AlgernonException
extends Exception

This is a generic exception to be thrown by Algernon code. Usually you should throw more specific exceptions. Important subclasses are AlgernonCompilerException and AlgernonRuntimeException.

See Also:
Processor, AlgernonCompilerException, AlgernonRuntimeException, Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
AlgernonException(String message)
          Creates a new AlgernonException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AlgernonException

public AlgernonException(String message)
Creates a new AlgernonException


Algernon Software