mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-05 05:30:41 +08:00
20 lines
471 B
C++
20 lines
471 B
C++
///|/ Copyright (c) Prusa Research 2017 - 2020 Vojtěch Bubník @bubnikv, Oleksandra Iushchenko @YuSanka
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#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
|