blob: a1670be7b4090e92460ce237bb7aa769856dcedd [file] [log] [blame]
package brooklyn.event;
/**
* Indicate an exception when attempting to start an entity.
*/
public class EntityStartException extends Exception {
/** serialVersionUID */
private static final long serialVersionUID = -3496470940340905514L;
public EntityStartException(String message) {
super(message);
}
public EntityStartException(String message, Throwable cause) {
super(message, cause);
}
}