com.Bayesia.api
Class IllegalOperationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.Bayesia.api.IllegalOperationException
All Implemented Interfaces:
java.io.Serializable

public class IllegalOperationException
extends java.lang.RuntimeException

The class IllegalOperationException is used when an illegal operation is performed for example on a not existent node.

IllegalOperationException is a subclass of RuntimeException so you can avoid to catch them.

Version:
1.0 23/09/04
Author:
Bayesia S.A.
See Also:
Serialized Form

Constructor Summary
IllegalOperationException()
          Default constructor.
IllegalOperationException(java.lang.String message)
          Create a new IllegalOperationException with the specified message.
IllegalOperationException(java.lang.String message, java.lang.Throwable cause)
          Create a new IllegalOperationException with the specified message and generated by the specified cause.
IllegalOperationException(java.lang.Throwable cause)
          Create a new IllegalOperationException generated by the specified cause.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalOperationException

public IllegalOperationException()
Default constructor.


IllegalOperationException

public IllegalOperationException(java.lang.String message)
Create a new IllegalOperationException with the specified message.

Parameters:
message -

IllegalOperationException

public IllegalOperationException(java.lang.Throwable cause)
Create a new IllegalOperationException generated by the specified cause.

Parameters:
cause -

IllegalOperationException

public IllegalOperationException(java.lang.String message,
                                 java.lang.Throwable cause)
Create a new IllegalOperationException with the specified message and generated by the specified cause.

Parameters:
message -
cause -