All Downloads are FREE. Search and download functionalities are using the official Maven repository.

openllet.atom.OpenError Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
package openllet.atom;

/**
 * {@link AgentException} exceptions are thrown when agent related errors occur.
 */
public class OpenError extends RuntimeException
{
	private static final long serialVersionUID = 3127335636382782538L;

	/**
	 * Instantiates a new exception.
	 */
	public OpenError()
	{
		super();
	}

	/**
	 * Instantiates a new exception using the given message.
	 * 
	 * @param message Details about the exception.
	 */
	public OpenError(final String message)
	{
		super(message);
	}

	/**
	 * Instantiates a new exception using the given cause.
	 * 
	 * @param cause Cause of the exception.
	 */
	public OpenError(final Throwable cause)
	{
		super(cause);
	}

	/**
	 * Instantiates a new exception using the given message and cause.
	 * 
	 * @param message Details about the exception.
	 * @param cause Cause of the exception.
	 */
	public OpenError(final String message, final Throwable cause)
	{
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy