Searched defs:lazy_exception (Results 1 – 1 of 1) sorted by relevance
67 struct lazy_exception : public std::exception { struct68 const char* s;69 lazy_exception( const char* ss ) : s(ss) {} in lazy_exception() argument70 const char* what() const throw() { return s; } in what()