mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-07 15:04:56 +02:00
19 lines
331 B
C++
19 lines
331 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
|