summaryrefslogtreecommitdiffstats
path: root/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/plugin/qemu/cmdln/CommandLineArgsException.java
blob: a327b813ab5ca615b0a90c3972d617247916c43a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.openslx.runvirt.plugin.qemu.cmdln;

/**
 * An exception during the parsing of command line arguments.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class CommandLineArgsException extends Exception
{
	/**
	 * Version number for serialization.
	 */
	private static final long serialVersionUID = 8371924151602194406L;

	/**
	 * Creates an command line argument parsing exception including an error message.
	 * 
	 * @param errorMsg message to describe a specific parsing error.
	 */
	public CommandLineArgsException( String errorMsg )
	{
		super( errorMsg );
	}
}