org.yestech.event.InvalidResultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yesevent Show documentation
Show all versions of yesevent Show documentation
Java Based Event framework that can be used with a Dependency Injection system or without. Currently
Spring and Guice are supported. The Framework is pluggable with implementation that support direct routing and integration
of apache camel to handle the routing of events.
The newest version!
/*
* Copyright LGPL3
* YES Technology Association
* http://yestech.org
*
* http://www.opensource.org/licenses/lgpl-3.0.html
*/
package org.yestech.event;
/**
* Thrown if the multicaster returns a different result then the event passed in requires.
*
* @see org.yestech.event.annotation.EventResultType
* @see org.yestech.event.event.IEvent
*/
public class InvalidResultException extends RuntimeException
{
private static final long serialVersionUID = -6049911995211890956L;
public InvalidResultException()
{
}
public InvalidResultException(Throwable cause)
{
super(cause);
}
public InvalidResultException(String message)
{
super(message);
}
public InvalidResultException(String message, Throwable cause)
{
super(message, cause);
}
}