All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xins.client.UnacceptableRequestException Maven / Gradle / Ivy

/*
 * $Id: UnacceptableRequestException.java,v 1.28 2007/09/18 08:45:07 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.28 $ $Date: 2007/09/18 08:45:07 $
 * @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());
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy