Method
__init__
(self, e, errorOutput=None)
Source from the content-addressed store, hash-verified
| 30 | |
| 31 | class CMakeProblemError(ErrorWithExitCode): |
| 32 | def __init__(self, e, errorOutput=None): |
| 33 | ErrorWithExitCode.__init__(self, EXIT_CMAKE_PROBLEM, "There was a problem calling cmake. CMake is required and must be installed to run this." + ( (" Error output: "+errorOutput) if errorOutput else "" ) ) |
| 34 | |
| 35 | |
| 36 | class ToolFailedError(ErrorWithExitCode): |
Callers
nothing calls this directly
Tested by
no test coverage detected