WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
NotFoundException.cpp
1#include "NotFoundException.h"
2
3namespace framework
4{
5 namespace exceptions
6 {
7 NotFoundException::NotFoundException(std::string_view additionalInformation) :
8 BaseExecutorException(format("{}. {}", ::exceptions::notFound, additionalInformation))
9 {
10
11 }
12 }
13}