planet.commonapi.behaviours.exception
Class NoBehaviourDispatchedException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byplanet.commonapi.behaviours.exception.NoBehaviourDispatchedException
All Implemented Interfaces:
java.io.Serializable

public class NoBehaviourDispatchedException
extends java.lang.Exception

This Exception is thrown whenever a incoming RouteMessage pattern match a set of behaviours but no one has been dispatched.

Author:
Marc Sanchez
See Also:
Serialized Form

Constructor Summary
NoBehaviourDispatchedException()
          Generates new instance with default message.
NoBehaviourDispatchedException(java.lang.String message)
          Generates nes instance with the specified message
NoBehaviourDispatchedException(java.lang.String message, java.lang.Throwable cause)
          Inicialization of the new instance.
NoBehaviourDispatchedException(java.lang.Throwable cause)
          Initialization of the new instance.
 
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

NoBehaviourDispatchedException

public NoBehaviourDispatchedException()
Generates new instance with default message.


NoBehaviourDispatchedException

public NoBehaviourDispatchedException(java.lang.String message)
Generates nes instance with the specified message

Parameters:
message - Message to be inicialized the Exception.

NoBehaviourDispatchedException

public NoBehaviourDispatchedException(java.lang.String message,
                                      java.lang.Throwable cause)
Inicialization of the new instance.

Parameters:
message - The message to be inicialized.
cause - Throwable cause of the exception.

NoBehaviourDispatchedException

public NoBehaviourDispatchedException(java.lang.Throwable cause)
Initialization of the new instance.

Parameters:
cause - Throwable cause of the exception.