1
0
mirror of https://github.com/sandboxie-plus/Sandboxie.git synced 2025-02-12 13:01:05 +00:00
DavidXanatos 2f9c9d83e7
2021-07-05 13:55:11 +02:00

17 lines
320 B
C++

#pragma once
#include <exception>
#include <QString>
#include <QByteArray>
#include "uglobal.h"
class UGLOBALHOTKEY_EXPORT UException : public std::exception
{
public:
UException(const QString& message) throw();
const char* what() const throw();
~UException() throw ();
private:
QByteArray Message;
};