zkutil: added missing comma to exception message [#METR-12572].

This commit is contained in:
Alexey Milovidov 2014-09-03 05:18:11 +04:00
parent 4e782c3fdf
commit e54969e251

View File

@ -15,7 +15,7 @@ public:
KeeperException(int32_t code_)
: DB::Exception(zerror(code_)), code(code_) {}
KeeperException(int32_t code_, const std::string & path_)
: DB::Exception(std::string(zerror(code_)) + " path: " + path_), code(code_) {}
: DB::Exception(std::string(zerror(code_)) + ", path: " + path_), code(code_) {}
KeeperException(const KeeperException & exc) : DB::Exception(exc), code(exc.code) {}
const char * name() const throw() { return "zkutil::KeeperException"; }