For tracking simulator specific issues

reviewed-by: Marvin
This commit is contained in:
Prasanna Santhanam 2012-08-27 20:23:23 +05:30
parent 749787cd9e
commit b1a4ebd84d
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package com.cloud.simulator;
import com.cloud.utils.SerialVersionUID;
import com.cloud.utils.exception.RuntimeCloudException;
/**
* wrap exceptions that you know there's no point in dealing with.
*/
public class SimulatorRuntimeException extends RuntimeCloudException {
private static final long serialVersionUID = SerialVersionUID.CloudRuntimeException;
public SimulatorRuntimeException(String message) {
super(message);
}
public SimulatorRuntimeException(String message, Throwable th) {
super(message, th);
}
protected SimulatorRuntimeException() {
super();
}
}