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 | } |