jef.dna.instructions.exceptions
Class UnknownOpCodeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by jef.dna.instructions.exceptions.UnknownOpCodeException
All Implemented Interfaces:
java.io.Serializable

public class UnknownOpCodeException
extends java.lang.Exception

This exception is thrown whenever an unknown opCode is specified by the user or when it is read from a stream representing the Java class

Author:
Francesco Russo
See Also:
Serialized Form

Constructor Summary
UnknownOpCodeException()
          Creates a new instance of UnknownOpCode without detail message.
UnknownOpCodeException(java.lang.String msg)
          Constructs an instance of UnknownOpCode with the specified detail message.
 
Method Summary
 
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

UnknownOpCodeException

public UnknownOpCodeException()
Creates a new instance of UnknownOpCode without detail message.


UnknownOpCodeException

public UnknownOpCodeException(java.lang.String msg)
Constructs an instance of UnknownOpCode with the specified detail message.

Parameters:
msg - the detail message.