WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
NotFoundException.h
1#pragma once
2
3#include "BaseExecutorException.h"
4
5namespace framework
6{
7 namespace exceptions
8 {
12 class WEB_FRAMEWORK_API NotFoundException : public BaseExecutorException
13 {
14 public:
15 NotFoundException(std::string_view additionalInformation = "");
16
17 virtual ~NotFoundException() = default;
18 };
19 }
20}
Base class for most of WebFramework exceptions.