Menu

[r330]: / framework / trunk / cppcms_error.h  Maximize  Restore  History

Download this file

16 lines (11 with data), 267 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#ifndef _HTTP_ERROR_H
#define _HTTP_ERROR_H
#include <string>
#include <stdexcept>
namespace cppcms {
class cppcms_error : public std::runtime_error {
public:
cppcms_error(std::string const &error) : std::runtime_error(error) {};
};
}
#endif /* _HTTP_ERROR_H */
MongoDB Logo MongoDB