| 304 | "exception description not match"); |
| 305 | |
| 306 | std::string CException::What() const { |
| 307 | std::ostringstream buffer; |
| 308 | buffer << m_filename_ << ":" << m_lineno_ << " " << exception_names[m_extype_] |
| 309 | << " detail: " << m_errormsg_; |
| 310 | return buffer.str(); |
| 311 | } |
| 312 | |
| 313 | } // namespace cbdb |
| 314 |