blob: 8673627267134d95dbad85794276725ac0e92586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SLICER_DB_EXCEPTIONS_H
#define SLICER_DB_EXCEPTIONS_H
#include <stdexcept>
namespace Slicer {
class UnsupportedModelType : public std::invalid_argument {
public:
UnsupportedModelType();
};
}
#endif
|