blob: 6b98ec2d4cd4b91c33823ec46a591050e52cd554 [file] [log] [blame]
/*
*/
package org.taverna.server.master.exceptions;
/**
* Exception that indicates the absence of an expected credential.
*
* @author Donal Fellows
*/
@SuppressWarnings("serial")
public class NoCredentialException extends Exception {
public NoCredentialException() {
super("no such credential");
}
}