mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-15 00:21:50 +08:00
16 lines
242 B
C++
16 lines
242 B
C++
#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;
|
|
};
|
|
}
|
|
|
|
}
|