added crow

This commit is contained in:
2025-12-14 21:34:10 +01:00
parent 8df3c5479b
commit 6f1d51cabc
39 changed files with 15400 additions and 0 deletions

14
include/crow/exceptions.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <stdexcept>
namespace crow
{
struct bad_request : public std::runtime_error
{
bad_request(const std::string& what_arg)
: std::runtime_error(what_arg) {}
bad_request(const char* what_arg)
: std::runtime_error(what_arg) {}
};
}