1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/**
* ProtocolException.h
*
* This exception is thrown internally in the library when invalid data is
* received from the server. The best remedy is to close the connection
*
* @copyright 2014 Copernica BV
*/
/**
* Include guard
*/
#pragma once
/**
* Dependencies
*/
#include "exception.h"
/**
* Set up namespace
*/
namespace AMQP {
/**
* Class definition
*/
class ProtocolException : public Exception
{
public:
/**
* Constructor
* @param what
*/
explicit ProtocolException(const std::string &what) : Exception(what) {}
};
/**
* End of namespace
*/
}
|