blob: 6af3d386d3a592b610de35e00d8840c57cf1769e [file]
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);
}
}