org.xins.client.UnacceptableRequestException Maven / Gradle / Ivy
/*
* $Id: UnacceptableRequestException.java,v 1.27 2007/03/12 10:40:41 agoubard Exp $
*
* Copyright 2003-2007 Orange Nederland Breedband B.V.
* See the COPYRIGHT file for redistribution and use restrictions.
*/
package org.xins.client;
/**
* Exception that indicates that a request for an API call is considered
* unacceptable on the application-level. For example, a mandatory input
* parameter may be missing.
*
* @version $Revision: 1.27 $ $Date: 2007/03/12 10:40:41 $
* @author Ernst de Haan
* @author Anthony Goubard
*
* @since XINS 1.2.0
*/
public final class UnacceptableRequestException extends UnacceptableMessageException {
/**
* Constructs a new UnacceptableRequestException
using the
* specified AbstractCAPICallRequest
.
*
* @param request
* the {@link AbstractCAPICallRequest} that is considered unacceptable,
* cannot be null
.
*/
public UnacceptableRequestException(AbstractCAPICallRequest request) {
super(request.xinsCallRequest());
}
}