CLAM-Development  1.4.0
XmlStorageErr.cxx
Go to the documentation of this file.
1 #include "XmlStorageErr.hxx"
2 #include <string>
3 
4 
5 namespace CLAM
6 {
7  XmlStorageErr::XmlStorageErr(const std::string & errors)
8  {
9  _errors = errors;
10  }
11  const char * XmlStorageErr::what() const throw()
12  {
13  return _errors.c_str();
14  }
15 
16 }
17 
18