File: exception.h

package info (click to toggle)
amqp-cpp 4.3.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,384 kB
  • sloc: cpp: 10,021; ansic: 191; makefile: 95
file content (40 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
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
/**
 *  Exception.h
 *
 *  Base class for all AMQP exceptions
 *
 *  @copyright 2014 Copernica BV
 */

/**
 *  Include guard
 */
#pragma once

/**
 *  Dependencies
 */
#include <stdexcept>

/**
 *  Set up namespace
 */
namespace AMQP {

/**
 *  Base exception class
 */
class Exception : public std::runtime_error
{
protected:
    /**
     *  Constructor
     *  @param  what
     */
    explicit Exception(const std::string &what) : runtime_error(what) {}
};

/**
 *  End of namespace
 */
}