package CookieCutter.g5;

public class Group5Exception extends Exception {
	private static final String _genericException = "[Group 5 Exception]";
	private String _debugMsg;

	public Group5Exception() {
		super();
	}

	public Group5Exception( String msg ) {
		super();
		_debugMsg = msg;
	}

	public String toString() {
		if( _debugMsg != null ) {
			return( _genericException + " - " + _debugMsg );
		}

		return( _genericException );
	}
}
