From 52caa3869a79b50f0c3e74cdac6aaeec5802ea87 Mon Sep 17 00:00:00 2001 From: vjrj <vjrj@comunes.org> Date: Thu, 20 Apr 2023 20:26:12 +0200 Subject: [PATCH] Added new no nodes exception --- lib/g1/no_nodes_exception.dart | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/g1/no_nodes_exception.dart diff --git a/lib/g1/no_nodes_exception.dart b/lib/g1/no_nodes_exception.dart new file mode 100644 index 00000000..f83c6182 --- /dev/null +++ b/lib/g1/no_nodes_exception.dart @@ -0,0 +1,5 @@ +class NoNodesException implements Exception { + NoNodesException(this.cause); + + String cause; +} -- GitLab