10 #ifndef ApproxMVBB_Common_Exception_hpp 11 #define ApproxMVBB_Common_Exception_hpp 21 Exception(
const std::stringstream & ss):
std::runtime_error(ss.str()){}
27 #define ApproxMVBB_THROWEXCEPTION( message ) {std::stringstream ___s___ ; ___s___ << message << std::endl << " @ " << __FILE__ << " (" << __LINE__ << ")" << std::endl; throw ApproxMVBB::Exception(___s___);} 31 #endif // Exception_hpp These are some container definitions.
Exception(const std::stringstream &ss)