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

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

The newest version!
/*
 * $Id: InvalidResponseException.java,v 1.17 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 a response is considered invalid.
 *
 * @version $Revision: 1.17 $ $Date: 2010/09/29 17:21:48 $
 * @author Ernst de Haan
 *
 * @since XINS 1.0.0
 */
public final class InvalidResponseException
extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy