Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/GUI/ConfigExceptions.hpp')
-rw-r--r--src/slic3r/GUI/ConfigExceptions.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/slic3r/GUI/ConfigExceptions.hpp b/src/slic3r/GUI/ConfigExceptions.hpp
new file mode 100644
index 000000000..9038d3445
--- /dev/null
+++ b/src/slic3r/GUI/ConfigExceptions.hpp
@@ -0,0 +1,15 @@
+#include <exception>
+namespace Slic3r {
+
+class ConfigError : public std::runtime_error {
+using std::runtime_error::runtime_error;
+};
+
+namespace GUI {
+
+class ConfigGUITypeError : public ConfigError {
+using ConfigError::ConfigError;
+};
+}
+
+}