/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mxgstest; /** * * @author stet */ public class MxgsTestException extends Exception { /** * Creates a new instance of MxgsTestException without detail * message. */ public MxgsTestException() { } /** * Constructs an instance of MxgsTestException with the * specified detail message. * * @param msg the detail message. */ public MxgsTestException(String msg) { super(msg); } }