MtasConfigException.java

  1. package mtas.analysis.util;

  2. /**
  3.  * The Class MtasConfigException.
  4.  */
  5. public class MtasConfigException extends Exception {

  6.   /** The Constant serialVersionUID. */
  7.   private static final long serialVersionUID = 1L;

  8.   /**
  9.    * Instantiates a new mtas config exception.
  10.    */
  11.   public MtasConfigException() {
  12.     super();
  13.   }

  14.   /**
  15.    * Instantiates a new mtas config exception.
  16.    *
  17.    * @param string the string
  18.    */
  19.   public MtasConfigException(String string) {
  20.     super(string);
  21.   }

  22. }