You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
351 B

4 years ago
#ifndef HONAALREADYSTARTEDEXCEPTION_H
#define HONAALREADYSTARTEDEXCEPTION_H
4 years ago
#include <QDebug>
#include <QString>
4 years ago
4 years ago
class HonaAlreadyStartedException : public std::exception
4 years ago
{
4 years ago
4 years ago
public:
HonaAlreadyStartedException()
{
}
4 years ago
virtual const char* what() const throw()
{
return "";
}
4 years ago
};
4 years ago
#endif //HONAALREADYSTARTEDEXCEPTION_H