MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / ToString

Method ToString

Code/Common/src/sitkExceptionObject.cxx:100–111  ·  view source on GitHub ↗

Return a description of the error */

Source from the content-addressed store, hash-verified

98
99/** Return a description of the error */
100std::string
101GenericException::ToString() const
102{
103 if (this->m_PimpleException)
104 {
105 std::ostringstream out;
106 this->m_PimpleException->Print(out);
107 return std::string();
108 }
109
110 return std::string("No pimple exception");
111}
112
113const char *
114GenericException::what() const noexcept

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected