summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/libvirt/xml/LibvirtXmlDocumentException.java
blob: f8605ed9db5025a64a19d50da5262c20dbd081f4 (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 a Libvirt XML document.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class LibvirtXmlDocumentException extends Exception
{
	/**
	 * Version number for serialization.
	 */
	private static final long serialVersionUID = -7423926322035713576L;

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