BadgerDB
|
00001 00008 #include "relation_already_exists_exception.h" 00009 00010 #include <sstream> 00011 #include <string> 00012 00013 namespace badgerdb { 00014 00015 RelationAlreadyExistsException::RelationAlreadyExistsException() 00016 : BadgerDbException(""){ 00017 std::stringstream ss; 00018 ss << "relation already exists"; 00019 message_.assign(ss.str()); 00020 } 00021 00022 }