Coverage Report

Created: 2025-08-03 07:06

/src/crow/include/crow/exceptions.h
Line
Count
Source (jump to first uncovered line)
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
0
            : std::runtime_error(what_arg) {}
10
11
        bad_request(const char* what_arg)
12
0
            : std::runtime_error(what_arg) {}
13
    };
14
}