| 100 | }; |
| 101 | |
| 102 | class InvalidProgramException : public Exception |
| 103 | { |
| 104 | public: |
| 105 | InvalidProgramException() |
| 106 | {} |
| 107 | InvalidProgramException(const String & message) |
| 108 | : Exception(message) |
| 109 | { |
| 110 | } |
| 111 | }; |
| 112 | } |
| 113 | } |
| 114 |
no outgoing calls
no test coverage detected