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