Coverage Report

Created: 2024-04-23 06:04

/src/resiprocate/rutil/ParseException.cxx
Line
Count
Source (jump to first uncovered line)
1
#include "rutil/ParseException.hxx"
2
3
namespace resip
4
{
5
6
ParseException::ParseException(const Data& msg, 
7
                                 const Data& context, 
8
                                 const Data& file, 
9
                                 const int line)
10
   : resip::BaseException(msg, file, line),
11
   mContext(context)
12
91.6k
{}
13
14
const char* 
15
ParseException::name() const noexcept
16
0
{ 
17
0
   return "ParseException"; 
18
0
}
19
20
const Data& 
21
ParseException::getContext() const noexcept
22
0
{
23
0
   return mContext;
24
0
}
25
26
}