blob: 0b6247e464eaa1bf12e904a5e1c26750b90dfdf6 [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.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);
}
}