This commit is contained in:
Nav
2022-08-27 17:56:55 +01:00
parent f77e9d7874
commit 6c436cbefc
9 changed files with 12 additions and 12 deletions

View File

@@ -426,7 +426,7 @@ namespace Bloom
>(); >();
if (!tcStateChangeEvent.has_value() || tcStateChangeEvent->get()->getState() != ThreadState::READY) { if (!tcStateChangeEvent.has_value() || tcStateChangeEvent->get()->getState() != ThreadState::READY) {
throw Exception("TargetController failed to startup."); throw Exception("TargetController failed to start up");
} }
} }
@@ -465,7 +465,7 @@ namespace Bloom
>(); >();
if (!dsStateChangeEvent.has_value() || dsStateChangeEvent->get()->getState() != ThreadState::READY) { if (!dsStateChangeEvent.has_value() || dsStateChangeEvent->get()->getState() != ThreadState::READY) {
throw Exception("DebugServer failed to startup."); throw Exception("DebugServer failed to start up");
} }
} }