Crow
1.1
A C++ microframework for the web
exceptions.h
1
#pragma once
2
#include <stdexcept>
3
4
namespace
crow
5
{
6
struct
bad_request
:
public
std::runtime_error
7
{
8
bad_request
(
const
std::string& what_arg)
9
: std::runtime_error(what_arg) {}
10
11
bad_request
(
const
char
* what_arg)
12
: std::runtime_error(what_arg) {}
13
};
14
}
crow
The main namespace of the library. In this namespace is defined the most important classes and functi...
crow::bad_request
Definition:
exceptions.h:7
include
crow
exceptions.h
Generated on Mon Nov 4 2024 for Crow by
1.9.1. Dark theme by
Tilen Majerle
. Edited by
Farook Al-Sammarraie
. All rights reserved.