org.xins.server.FunctionNotSpecifiedException Maven / Gradle / Ivy
The newest version!
/*
* $Id: FunctionNotSpecifiedException.java,v 1.11 2010/09/29 17:21:48 agoubard Exp $
*
* See the COPYRIGHT file for redistribution and use restrictions.
*/
package org.xins.server;
/**
* Exception that indicates that an incoming request does not specify the
* function to execute.
*
* @version $Revision: 1.11 $ $Date: 2010/09/29 17:21:48 $
* @author Ernst de Haan
*/
public final class FunctionNotSpecifiedException
extends Exception {
/**
* Constructs a new FunctionNotSpecifiedException
.
*/
public FunctionNotSpecifiedException() {
super("Function not specified in incoming request.");
}
}