blob: c49d111708c4bda80bb34b51d58a455562393d91 [file] [log] [blame]
/*
* Copyright (C) 2010 The University of Manchester
*
* See the file "LICENSE" for license terms.
*/
package org.taverna.server.master.exceptions;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.WebFault;
/**
* Exception that is thrown to indicate that the user is not permitted to update
* something.
*
* @author Donal Fellows
*/
@WebFault(name = "NoUpdateFault")
@XmlSeeAlso( { NoCreateException.class, NoDestroyException.class, BadStateChangeException.class })
public class NoUpdateException extends Exception {
private static final long serialVersionUID = 4230987102653846379L;
public NoUpdateException() {
super("not permitted to update");
}
public NoUpdateException(String msg) {
super(msg);
}
public NoUpdateException(String string, Throwable e) {
super(string, e);
}
}