summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/firmware/FirmwareException.java
blob: 494d653199e2ef467a18416c7d24202d9165ae75 (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.firmware;

/**
 * An exception of a firmware-related error.
 * 
 * @author Manuel Bentele
 * @version 1.0
 */
public class FirmwareException extends Exception
{
	/**
	 * Version for serialization.
	 */
	private static final long serialVersionUID = -5932122856822258867L;

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