aboutsummaryrefslogtreecommitdiff
path: root/frontend/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/Exception.h')
-rw-r--r--frontend/Exception.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/frontend/Exception.h b/frontend/Exception.h
deleted file mode 100644
index 3bbced2..0000000
--- a/frontend/Exception.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include <exception>
-#include <memory>
-
-class Exception : public std::exception {
-public:
- Exception(const char * fmt, ...);
- const char * what();
-
-protected:
- Exception() = default;
- std::unique_ptr<char> error;
-};
-