summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/libvirt/xml/LibvirtXmlValidationException.java
blob: 24e9db77bd97db0455a95994eb3610852c38bd00 (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.libvirt.xml;

/**
 * An exception of an unsuccessful Libvirt XML validation.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class LibvirtXmlValidationException extends Exception
{
	/**
	 * Version number for serialization.
	 */
	private static final long serialVersionUID = 2299967599483742777L;

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