00001 00004 #include "BeliefException.h" 00005 00006 namespace pomdp{ 00007 00008 BeliefException::BeliefException(const std::string& e):runtime_error(e){ 00009 err = e; 00010 } 00011 00012 std::string BeliefException::getMessage(){ 00013 return err; 00014 } 00015 00016 BeliefException::~BeliefException() throw(){ 00017 } 00018 }