CommandLineException.java

package edu.udel.cis.vsl.gmc;

/**
 * An exception that is thrown if the command line arguments are not formatted
 * correctly.
 * 
 * @author siegel
 * 
 */
public class CommandLineException extends Exception {

	/**
	 * An Eclipse-generated ID for serialization.
	 */
	private static final long serialVersionUID = -4661661744085611884L;

	/**
	 * Constructs new instance with given message.
	 * 
	 * @param msg
	 *            the error message to report to the user explaining why the
	 *            command line arguments are incorrect
	 */
	public CommandLineException(String msg) {
		super(msg);
	}

}