1 package gov.noaa.mptools; 2 3 /*** An exception to use in this package. 4 * @author tns 5 * @version $Revision: 1.1.1.1 $ 6 */ 7 8 public class MPException extends Exception{ 9 10 /*** Creates a new instance of MPException 11 */ 12 public MPException() { 13 super(); 14 } 15 16 /*** Creates a new version of MPException 17 * @param msg The error message. */ 18 public MPException(String msg){ 19 super(msg); 20 } 21 }