blob: 6659d914fe782b7f0c02179a478202297e5602f5 [file] [log] [blame]
/*
*/
package org.taverna.server.master.exceptions;
import javax.xml.ws.WebFault;
/**
* Exception that is thrown to indicate that the user is not permitted to
* destroy something.
*
* @author Donal Fellows
*/
@WebFault(name = "NoDestroyFault")
public class NoDestroyException extends NoUpdateException {
private static final long serialVersionUID = 6207448533265237933L;
public NoDestroyException() {
super("not permitted to destroy");
}
}