1 package at.ac.tuwien.lsdc.exception;
3 import at.ac.tuwien.lsdc.types.VirtualMachine;
6 * Exception to be thrown if a VM could not be resized.
11 public class VMResizeException extends RuntimeException {
12 private final VirtualMachine vm;
14 public VMResizeException(String message, VirtualMachine vm) {
19 public VirtualMachine getVm() {