blob: 3afe85a16c7c6a1a9e821376cc76eef1fbbf0eac (
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
26
27
28
29
30
31
|
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 );
}
public LibvirtXmlValidationException( Exception other )
{
super( other );
}
}
|