registry-publisher/src/main/java/org/gcube/informationsystem/publisher/stubs/registry/faults/CreateException.java

27 lines
652 B
Java

package org.gcube.informationsystem.publisher.stubs.registry.faults;
import javax.xml.ws.WebFault;
import org.gcube.informationsystem.publisher.stubs.registry.RegistryStub;
/**
* Thrown by {@link RegistryStub#create(String, String)} when something is failed on creation
*/
@WebFault(name = "CreateFault")
public class CreateException extends PublisherException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Creates an instance with a given message and an {@link AxisFaultInfo} payload
* @param message the message
* @param info the payload
*/
public CreateException(String message) {
super(message);
}
}