blob: 790efe92f528294da470650e6e4267a8675a315e [file] [log] [blame]
/*
*/
package org.taverna.server.master.exceptions;
import javax.xml.ws.WebFault;
/**
* Indicates that the port name was not recognized.
*
* @author Donal Fellows
*/
@WebFault(name = "BadInputPortNameFault")
@SuppressWarnings("serial")
public class BadInputPortNameException extends Exception {
public BadInputPortNameException(String msg) {
super(msg);
}
}