Coverage Report

Created: 2026-02-14 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/wt/src/Wt/Exception/WInvalidOperationException.C
Line
Count
Source
1
#include "WInvalidOperationException.h"
2
3
namespace Wt {
4
WInvalidOperationException::WInvalidOperationException(const std::string& what)
5
64
  : WException(what)
6
64
{
7
64
}
8
9
WInvalidOperationException::WInvalidOperationException(const std::string& what, const std::exception& wrapped)
10
0
  : WException(what, wrapped)
11
0
{
12
0
}
13
}