mirror of https://github.com/apache/cloudstack.git
fix NPE when failed to start VM
This commit is contained in:
parent
a1aebfd586
commit
e9b2ac63d0
|
|
@ -33,8 +33,10 @@ public abstract class InsufficientCapacityException extends Exception {
|
|||
super();
|
||||
}
|
||||
|
||||
public InsufficientCapacityException(String msg, Class<?> type, Long id) {
|
||||
public InsufficientCapacityException(String msg, Class<?> scope, Long id) {
|
||||
super(msg);
|
||||
this.scope = scope;
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue