|
reSIProcate/rutil
9694
|
00001 #include "rutil/ParseException.hxx" 00002 00003 namespace resip 00004 { 00005 00006 ParseException::ParseException(const Data& msg, 00007 const Data& context, 00008 const Data& file, 00009 const int line) 00010 : resip::BaseException(msg, file, line), 00011 mContext(context) 00012 {} 00013 00014 ParseException::~ParseException() throw() 00015 {} 00016 00017 const char* 00018 ParseException::name() const 00019 { 00020 return "ParseException"; 00021 } 00022 00023 const Data& 00024 ParseException::getContext() const 00025 { 00026 return mContext; 00027 } 00028 00029 }
1.7.5.1