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

ConfigExceptions.hpp « GUI « slic3r « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9038d3445ed133ea8a1e95f5944cc62f694b9284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
};
}

}