Coverage Report

Created: 2023-09-25 06:22

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