README: Rename project from 'qss' to 'looqs'

This commit is contained in:
2021-06-12 14:57:26 +02:00
parent 576b884574
commit 645903ed6b
5 changed files with 12 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
#ifndef QSSGENERALEXCEPTION_H
#define QSSGENERALEXCEPTION_H
#include <QException>
class QSSGeneralException : public QException
{
public:
QString message;
QSSGeneralException(QString message)
{
this->message = message;
}
void raise() const override
{
throw *this;
}
QSSGeneralException *clone() const override
{
return new QSSGeneralException(*this);
}
};
#endif // QSSGENERALEXCEPTION_H