org.xins.server.InvalidResponseException Maven / Gradle / Ivy
/*
* $Id: InvalidResponseException.java,v 1.15 2007/03/12 10:40:29 agoubard Exp $
*
* Copyright 2003-2007 Orange Nederland Breedband B.V.
* 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.15 $ $Date: 2007/03/12 10:40:29 $
* @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);
}
}