File: Exceptions.cpp

package info (click to toggle)
eris 1.3.10-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,592 kB
  • ctags: 1,516
  • sloc: cpp: 9,850; sh: 8,288; perl: 287; ansic: 165; makefile: 162
file content (32 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <Eris/Exceptions.h>

namespace Eris {

BaseException::~BaseException() throw()
{
}

InvalidOperation::~InvalidOperation() throw()
{
}

NetworkFailure::~NetworkFailure() throw()
{
}

InvalidAtlas::InvalidAtlas(const std::string& msg, const Atlas::Objects::Root& obj) :
    BaseException(msg),
    m_obj(obj)
{
}

InvalidAtlas::InvalidAtlas(const std::string& msg, const Atlas::Message::Element&) :
    BaseException(msg)
{
}

InvalidAtlas::~InvalidAtlas() throw()
{
}

}