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