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

net.seninp.jmotif.sax.SAXException Maven / Gradle / Ivy

Go to download

An implementation of time series Symbolic Aggregate approXimation and HOTSAX algorithms.

The newest version!
package net.seninp.jmotif.sax;

/**
 * The sax custom exception.
 *
 * @author Pavel Senin
 *
 */
public class SAXException extends Exception {

  /** The default serial version UID. */
  private static final long serialVersionUID = 1L;

  /**
   * Thrown when some problem occurs.
   *
   * @param description The problem description.
   * @param error The previous error.
   */
  public SAXException(String description, Throwable error) {
    super(description, error);
  }

  /**
   * Thrown when some problem occurs.
   *
   * @param description The problem description.
   */
  public SAXException(String description) {
    super(description);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy