aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.ucl/error.ccm
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-27 12:08:58 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-27 12:08:58 +0100
commit001c9917ace09f7b1c80d96eb067e1d37e86c546 (patch)
tree89e360961b9659a8c6b897c5412b7d6834b8eed9 /nihil.ucl/error.ccm
parent90aa957ca9b7c217af7569009d1675e0f3ff8e9b (diff)
downloadnihil-001c9917ace09f7b1c80d96eb067e1d37e86c546.tar.gz
nihil-001c9917ace09f7b1c80d96eb067e1d37e86c546.tar.bz2
improve error handling
Diffstat (limited to 'nihil.ucl/error.ccm')
-rw-r--r--nihil.ucl/error.ccm22
1 files changed, 0 insertions, 22 deletions
diff --git a/nihil.ucl/error.ccm b/nihil.ucl/error.ccm
deleted file mode 100644
index cdb5c2b..0000000
--- a/nihil.ucl/error.ccm
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * This source code is released into the public domain.
- */
-
-module;
-
-#include <string>
-
-export module nihil.ucl:error;
-
-import nihil;
-
-namespace nihil::ucl {
-
-/*
- * Exception thrown when an issue occurs with UCL.
- */
-export struct error : generic_error {
- error(std::string what);
-};
-
-} // namespace nihil::ucl