mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
15 lines
284 B
C++
15 lines
284 B
C++
#include <exception>
|
|
namespace Slic3r {
|
|
|
|
class ConfigError : public Slic3r::RuntimeError {
|
|
using Slic3r::RuntimeError::RuntimeError;
|
|
};
|
|
|
|
namespace GUI {
|
|
|
|
class ConfigGUITypeError : public ConfigError {
|
|
using ConfigError::ConfigError;
|
|
};
|
|
|
|
} // namespace GUI
|
|
} // namespace Slic3r
|