mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-05 13:07:55 +00:00
19 lines
313 B
C++
19 lines
313 B
C++
//
|
|
// CppUnitException.cpp
|
|
//
|
|
// $Id: //poco/1.4/CppUnit/src/CppUnitException.cpp#1 $
|
|
//
|
|
|
|
|
|
#include "CppUnit/CppUnitException.h"
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
const std::string CppUnitException::CPPUNIT_UNKNOWNFILENAME = "<unknown>";
|
|
const int CppUnitException::CPPUNIT_UNKNOWNLINENUMBER = -1;
|
|
|
|
|
|
} // namespace CppUnit
|