miSim

misim
Class EmulationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--misim.EmulationException
All Implemented Interfaces:
java.io.Serializable

public class EmulationException
extends java.lang.RuntimeException

The Emulation extends RuntimeException so that emulation can throw rare exceptions without having to propagate throws clauses throughout the code. This is used to handle breakpoints and the Sleep command. Note that only the Message of an EmulationException is reported by the emulator - this does not display a stack trace or other debugging information.

See Also:
Serialized Form

Constructor Summary
EmulationException(java.lang.String message)
          Create a EmulationException with the given message
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EmulationException

public EmulationException(java.lang.String message)
Create a EmulationException with the given message

miSim