39 #ifndef __COME_SSM_EXCEPTIONS__
40 #define __COME_SSM_EXCEPTIONS__
53 :m_classname(classname), m_methodname(methodname) {
57 const char* what()
const throw() {
58 return (m_classname +
"::" +m_methodname).c_str();
61 std::string m_classname;
62 std::string m_methodname;
72 const char* what()
const throw() {
73 return m_message.c_str();
77 std::string m_message;
Used to indicate that a method has not yet been implemented.
Definition: Exceptions.h:50
Generic Exception class for the statismo Library.
Definition: Exceptions.h:68