summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/virtualization/configuration/transformation/TransformationException.java
blob: 72f320d66bd175bea28d92a8c168e53fb1568974 (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.virtualization.configuration.transformation;

/**
 * An exception of a transformation error.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class TransformationException extends Exception
{
	/**
	 * Version for serialization.
	 */
	private static final long serialVersionUID = 7293420658901349154L;

	/**
	 * Creates a transformation exception including an error message.
	 * 
	 * @param errorMsg message to describe the exception.
	 */
	public TransformationException( String errorMsg )
	{
		super( errorMsg );
	}
}