package betsy.bpel.virtual.host.exceptions.vm; import betsy.bpel.virtual.host.VirtualBoxException; /** * The {@link VirtualMachineNotFoundException} is thrown if the VirtualBox * instance did not contain a virtual machine with the requested name or uuid. * * @author Cedric Roeck * @version 1.0 */ public class VirtualMachineNotFoundException extends VirtualBoxException { /** * SerialVersionUID. */ private static final long serialVersionUID = 1L; public VirtualMachineNotFoundException() { super(); } public VirtualMachineNotFoundException(final String message) { super(message); } public VirtualMachineNotFoundException(final Throwable cause) { super(cause); } public VirtualMachineNotFoundException(final String message, final Throwable cause) { super(message, cause); } public VirtualMachineNotFoundException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }