Creates an exception class with a given status code.
| 42 | public: |
| 43 | // Creates an exception class with a given status code. |
| 44 | Exception(Status status) |
| 45 | : mStatus(status) |
| 46 | {} |
| 47 | |
| 48 | Status status() const |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected