summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/virtualization/disk/DiskImageException.java
blob: db629173e47deced5ef7b7b5613ca4e9721db450 (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.disk;

/**
 * An exception for faulty disk image handling.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class DiskImageException extends Exception
{
	/**
	 * Version number for serialization.
	 */
	private static final long serialVersionUID = 5464286488698331909L;

	/**
	 * Creates a disk image exception including an error message.
	 * 
	 * @param errorMsg message to describe a disk image error.
	 */
	public DiskImageException( String errorMsg )
	{
		super( errorMsg );
	}
}