| 122 | } |
| 123 | |
| 124 | String CommandError::getData() const { |
| 125 | if (!errorPointer || !errorPointer->data) return String(); |
| 126 | return String(errorPointer->data); |
| 127 | } |
| 128 | |
| 129 | String CommandError::getMessage() const { |
| 130 | if (errorPointer) { |
nothing calls this directly
no outgoing calls
no test coverage detected