| 9390 | } |
| 9391 | |
| 9392 | String ScriptingObjects::ScriptErrorHandler::getErrorMessage() const |
| 9393 | { |
| 9394 | auto el = getCurrentErrorLevel(); |
| 9395 | |
| 9396 | if (el == -1) |
| 9397 | return {}; |
| 9398 | |
| 9399 | auto m = customErrorMessages[el]; |
| 9400 | |
| 9401 | if (m.isNotEmpty()) |
| 9402 | return m; |
| 9403 | |
| 9404 | return getScriptProcessor()->getMainController_()->getOverlayTextMessage((OverlayMessageBroadcaster::State)el); |
| 9405 | } |
| 9406 | |
| 9407 | int ScriptingObjects::ScriptErrorHandler::getNumActiveErrors() const |
| 9408 | { |
no test coverage detected