blob: 0d6ca63254bce8feec3cc4b9692681a30770a468 [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 file or directory name was not recognized.
*
* @author Donal Fellows
*/
@WebFault(name = "NoDirectoryEntryFault")
@SuppressWarnings("serial")
public class NoDirectoryEntryException extends Exception {
public NoDirectoryEntryException(String msg) {
super(msg);
}
public NoDirectoryEntryException(String msg,Exception cause) {
super(msg, cause);
}
}