summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/util/vm/UnsupportedVirtualizerFormatException.java
blob: 08c9673f501c181ca9c0065a84537e89f744407c (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.openslx.util.vm;

@SuppressWarnings( "serial" )
public class UnsupportedVirtualizerFormatException extends Exception
{
	public UnsupportedVirtualizerFormatException(String message) {
		super(message);
	}
}