org.codehaus.xfire.annotations.AnnotationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xfire-annotations Show documentation
Show all versions of xfire-annotations Show documentation
Annotation support for XFire
package org.codehaus.xfire.annotations;
import org.codehaus.xfire.XFireRuntimeException;
/**
* Thrown when an exception occurs related to XFire's annotation support.
*
* @author Arjen Poutsma
*/
public class AnnotationException
extends XFireRuntimeException
{
/**
* Initializes a new AnnotationException
with the given string message.
*
* @param message the message.
*/
public AnnotationException(String message)
{
super(message);
}
/**
* Initializes a new AnnotationException
with the given string message and cause.
*
* @param message the message.
* @param cause the cause.
*/
public AnnotationException(String message, Throwable cause)
{
super(message, cause);
}
}