package mtas.analysis.util;
/**
 * The Class MtasParserException.
 */
public class MtasParserException extends Exception {
  /** The Constant serialVersionUID. */
  private static final long serialVersionUID = 1L;
  /**
   * Instantiates a new mtas parser exception.
   */
  public MtasParserException() {
    super();
  }
  /**
   * Instantiates a new mtas parser exception.
   *
   * @param string the string
   */
  public MtasParserException(String string) {
    super(string);
  }
}