Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jext.dawn
Class DawnRuntimeException  view DawnRuntimeException download DawnRuntimeException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.jext.dawn.DawnRuntimeException
All Implemented Interfaces:
java.io.Serializable

public class DawnRuntimeException
extends java.lang.Exception

DawnRuntimeException is thrown whenever a function encounter an error. Basically, this exception is thrown if a function is not implemented. Yet, many functions will use it to warn user (i.e: empty stack, not enough arguments, etc...).


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
DawnRuntimeException(DawnParser parser, java.lang.String message)
          Create a new exception.
DawnRuntimeException(Function function, DawnParser parser, java.lang.String message)
          Create a new exception.
 
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

DawnRuntimeException

public DawnRuntimeException(DawnParser parser,
                            java.lang.String message)
Create a new exception. The message is built here to avoid keeping pointers to many other objects.


DawnRuntimeException

public DawnRuntimeException(Function function,
                            DawnParser parser,
                            java.lang.String message)
Create a new exception. The message is built here to avoid keeping pointers to many other objects.