generated from Sithas/conan_template
11 lines
154 B
C++
11 lines
154 B
C++
#include "session_exception.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace uad
|
|
{
|
|
char const* session_exception::what() const noexcept
|
|
{
|
|
return message.c_str();
|
|
}
|
|
} |