cloudstack-mirror/api/src/com/cloud/exception/DiscoveredWithErrorException.java
Abhinandan Prateek efa0417881 bug 5242: adding a host does not return useful error
status 5242: closed fixed
2011-04-15 17:28:46 +05:30

17 lines
441 B
Java

package com.cloud.exception;
import com.cloud.utils.SerialVersionUID;
public class DiscoveredWithErrorException extends DiscoveryException {
private static final long serialVersionUID = SerialVersionUID.DiscoveredWithErrorException;
public DiscoveredWithErrorException(String msg) {
this(msg, null);
}
public DiscoveredWithErrorException(String msg, Throwable cause) {
super(msg, cause);
}
}