aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.ucl/error.cc
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.cc
parent90aa957ca9b7c217af7569009d1675e0f3ff8e9b (diff)
downloadnihil-001c9917ace09f7b1c80d96eb067e1d37e86c546.tar.gz
nihil-001c9917ace09f7b1c80d96eb067e1d37e86c546.tar.bz2
improve error handling
Diffstat (limited to 'nihil.ucl/error.cc')
-rw-r--r--nihil.ucl/error.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/nihil.ucl/error.cc b/nihil.ucl/error.cc
deleted file mode 100644
index 2f19cb7..0000000
--- a/nihil.ucl/error.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * This source code is released into the public domain.
- */
-
-module;
-
-#include <string>
-#include <utility>
-
-module nihil.ucl;
-
-namespace nihil::ucl {
-
-error::error(std::string what)
- : generic_error(std::move(what))
-{
-}
-
-} // namespace nihil::ucl