summaryrefslogtreecommitdiffstats
path: root/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/virtualization/LibvirtHypervisorException.java
blob: 64ae6b20feb2c1b0e67caa0f84fb276c2bbd26d2 (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.virtualization;

/**
 * An exception of a Libvirt hypervisor error during acquiring the hypervisor's functionality.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class LibvirtHypervisorException extends Exception
{
	/**
	 * Version for serialization.
	 */
	private static final long serialVersionUID = -3631452625806770209L;

	/**
	 * Creates a Libvirt hypervisor exception including an error message.
	 * 
	 * @param errorMsg message to describe a specific Libvirt hypervisor error.
	 */
	LibvirtHypervisorException( String errorMsg )
	{
		super( errorMsg );
	}
}