mirror of https://github.com/apache/cloudstack.git
17 lines
441 B
Java
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);
|
|
}
|
|
}
|