cloudstack/api/src/com/cloud/exception/DiscoveredWithErrorExceptio...

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);
}
}