Coverage Report

Created: 2024-04-23 06:03

/src/resiprocate/rutil/BaseException.cxx
Line
Count
Source (jump to first uncovered line)
1
#ifdef HAVE_CONFIG_H
2
#include "config.h"
3
#endif
4
5
#include "rutil/BaseException.hxx"
6
#include "rutil/Logger.hxx"
7
8
using namespace resip;
9
10
#define RESIPROCATE_SUBSYSTEM resip::Subsystem::SIP
11
12
BaseException::BaseException( const Data& msg,
13
                        const Data& file,
14
                        const int line) : 
15
        message( msg ),
16
        fileName( file ),
17
        lineNumber( line )
18
0
{
19
0
#if !defined(RESIP_NO_EXCEPTION_DEBUG_LOGS)
20
0
   DebugLog(<< "BaseException at " << file << ":" << line << " " << message);
21
0
#endif
22
0
}
23
24
#ifndef RESIP_USE_STL_STREAMS
25
EncodeStream& resip::operator<<(EncodeStream& strm, const BaseException& e)
26
{
27
   strm << e.name() << " " << e.message << " @ " << e.fileName << ":" << e.lineNumber;
28
   return strm;
29
}
30
#endif
31
32
std::ostream& resip::operator<<(std::ostream& strm, const BaseException& e)
33
0
{
34
0
   strm << e.name() << " " << e.message << " @ " << e.fileName << ":" << e.lineNumber;
35
0
   return strm;
36
0
}
37
38
/* ====================================================================
39
 * The Vovida Software License, Version 1.0 
40
 * 
41
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
42
 * 
43
 * Redistribution and use in source and binary forms, with or without
44
 * modification, are permitted provided that the following conditions
45
 * are met:
46
 * 
47
 * 1. Redistributions of source code must retain the above copyright
48
 *    notice, this list of conditions and the following disclaimer.
49
 * 
50
 * 2. Redistributions in binary form must reproduce the above copyright
51
 *    notice, this list of conditions and the following disclaimer in
52
 *    the documentation and/or other materials provided with the
53
 *    distribution.
54
 * 
55
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
56
 *    and "Vovida Open Communication Application Library (VOCAL)" must
57
 *    not be used to endorse or promote products derived from this
58
 *    software without prior written permission. For written
59
 *    permission, please contact vocal@vovida.org.
60
 *
61
 * 4. Products derived from this software may not be called "VOCAL", nor
62
 *    may "VOCAL" appear in their name, without prior written
63
 *    permission of Vovida Networks, Inc.
64
 * 
65
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
66
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
67
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
68
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
69
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
70
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
71
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
72
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
73
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
74
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
75
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
76
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
77
 * DAMAGE.
78
 * 
79
 * ====================================================================
80
 * 
81
 * This software consists of voluntary contributions made by Vovida
82
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
83
 * Inc.  For more information on Vovida Networks, Inc., please see
84
 * <http://www.vovida.org/>.
85
 *
86
 */
87