resourcemanager-client/src/main/java/org/gcube/vremanagement/resourcemanager/client/exceptions/InvalidOptionsException.java

39 lines
830 B
Java

package org.gcube.vremanagement.resourcemanager.client.exceptions;
import javax.xml.ws.WebFault;
import org.gcube.common.clients.delegates.Unrecoverable;
@Unrecoverable
@WebFault(name="InvalidOptionsFaultType")
public class InvalidOptionsException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates an instance.
*/
public InvalidOptionsException() {
super();
}
/**
* Creates an instance with given message.
* @param msg the message
*/
public InvalidOptionsException(String msg) {
super(msg);
}
/**
* Creates an instance with a given message and cause.
* @param msg the message
* @param cause the cause
*/
public InvalidOptionsException(String msg,Throwable cause) {super(msg,cause);}
public InvalidOptionsException(Throwable cause) {
super(cause);
}
}