| 99 | const std::string dataset; |
| 100 | |
| 101 | static std::string BuildMessage(const std::string &dataset) |
| 102 | { |
| 103 | return "DisabledDatasetException: Your query tried to access the disabled dataset " + |
| 104 | dataset + |
| 105 | ". Please check your configuration: " |
| 106 | "https://github.com/Project-OSRM/osrm-backend/wiki/Disabled-Datasets"; |
| 107 | } |
| 108 | }; |
| 109 | |
| 110 | class RuntimeError : public exception |
nothing calls this directly
no outgoing calls
no test coverage detected