SVG5/sexception.h
2025-10-12 13:55:56 +09:00

22 lines
314 B
C++

#ifndef SEXCEPTION_H
#define SEXCEPTION_H
#include <QUnhandledException>
class SException : public QUnhandledException
{
public:
void raise() const override
{
throw *this;
}
SException* clone() const override
{
return new SException(*this);
}
};
#endif // SEXCEPTION_H