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

org.xins.server.InvalidRequestException Maven / Gradle / Ivy

The newest version!
/*
 * $Id: InvalidRequestException.java,v 1.15 2011/03/19 09:11:18 agoubard Exp $
 *
 * See the COPYRIGHT file for redistribution and use restrictions.
 */
package org.xins.server;

/**
 * Exception that indicates that an incoming request is considered invalid.
 *
 * @version $Revision: 1.15 $ $Date: 2011/03/19 09:11:18 $
 * @author Ernst de Haan
 */
public class InvalidRequestException
extends Exception {

   /**
    * Constructs a new InvalidRequestException with the specified
    * detail message and cause exception.
    *
    * @param message
    *    the message, can be null.
    *
    * @param cause
    *    the cause exception, can be null.
    */
   public InvalidRequestException(String message, Throwable cause) {
      super(message, cause);
   }

   /**
    * Constructs a new InvalidRequestException with the specified
    * detail message.
    *
    * @param message
    *    the message, can be null.
    */
   public InvalidRequestException(String message) {
      this(message, null);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy