net.alantea.viewml.VmlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viewml Show documentation
Show all versions of viewml Show documentation
XML view description system
package net.alantea.viewml;
/**
* The Class TXMLException.
*/
@SuppressWarnings("serial")
public class VmlException extends Exception
{
/**
* Instantiates a new TXML exception.
*
* @param message the message
*/
public VmlException(String message)
{
super(message);
}
/**
* Instantiates a new TXML exception.
*
* @param cause the cause
*/
public VmlException(Throwable cause)
{
super(cause);
}
/**
* Instantiates a new TXML exception.
*
* @param message the message
* @param cause the cause
*/
public VmlException(String message, Throwable cause)
{
super(message, cause);
}
}