changes here and there
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
#include "exception.h"
|
||||
|
||||
namespace usql {
|
||||
|
||||
Exception::Exception(const std::string &msg) {
|
||||
cause = msg;
|
||||
}
|
||||
Exception::Exception(const std::string &msg) {
|
||||
cause = msg;
|
||||
}
|
||||
|
||||
|
||||
const char* Exception::what() const noexcept { return cause.c_str(); }
|
||||
const char *Exception::what() const noexcept { return cause.c_str(); }
|
||||
}
|
||||
Reference in New Issue
Block a user