-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexceptions.h
37 lines (32 loc) · 896 Bytes
/
exceptions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
#include <QException>
class MakeException : public QException
{
public:
void raise() const override { throw *this; }
MakeException *clone() const override { return new MakeException(*this); }
MakeException(QString reason = "") {this->_reason = reason;}
QString reason() {return _reason;}
private:
QString _reason;
};
class BadPath : public QException
{
public:
BadPath *clone() const override { return new BadPath(*this); }
BadPath(QString reason = "") {this->_reason = reason;}
QString reason() {return _reason;}
private:
QString _reason;
};
class UnknownVariable : public QException
{
public:
UnknownVariable *clone() const override { return new UnknownVariable(*this); }
UnknownVariable(QString reason = "") {this->_reason = reason;}
QString reason() {return _reason;}
private:
QString _reason;
};
#endif // EXCEPTIONS_H