You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
848 B
Java

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