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

net.alantea.viewml.VmlException Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
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);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy