| 35 | } |
| 36 | |
| 37 | std::string FileLine() const |
| 38 | { |
| 39 | std::stringstream ss; |
| 40 | ss << " [" << m_File << ':' << m_Line << "]"; |
| 41 | return ss.str(); |
| 42 | } |
| 43 | }; |
| 44 | |
| 45 | /// Base class for all ArmNN exceptions so that users can filter to just those. |
no test coverage detected