14 lines
239 B
C++
14 lines
239 B
C++
|
#include "uexception.h"
|
||
|
|
||
|
UException::UException(const QString& message) throw()
|
||
|
: Message(message.toLocal8Bit())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
UException::~UException() throw () {
|
||
|
}
|
||
|
|
||
|
const char* UException::what() const throw () {
|
||
|
return Message.data();
|
||
|
}
|