change exception message

:)
This commit is contained in:
Josh Babb 2023-05-25 11:29:46 -05:00
parent b82ed502ca
commit 6749bc2f06

View file

@ -67,7 +67,7 @@ class JsonRPC {
void _sendNextAvailableRequest() { void _sendNextAvailableRequest() {
if (_requestQueue.isEmpty) { if (_requestQueue.isEmpty) {
// TODO handle properly // TODO handle properly
throw Exception("reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"); throw Exception("JSON RPC queue empty");
} }
final req = _requestQueue.next; final req = _requestQueue.next;