mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 12:24:27 +08:00
16 lines
284 B
C++
16 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
|