Sandboxie/SandboxiePlus/UGlobalHotkey/uexception.h

17 lines
320 B
C
Raw Normal View History

2021-07-05 12:55:11 +01:00
#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;
};