00001 #include "XmlStorageErr.hxx" 00002 #include <string> 00003 00004 00005 namespace CLAM 00006 { 00007 XmlStorageErr::XmlStorageErr(const std::string & errors) 00008 { 00009 _errors = errors; 00010 } 00011 const char * XmlStorageErr::what() const throw() 00012 { 00013 return _errors.c_str(); 00014 } 00015 00016 } 00017 00018