GCC Code Coverage Report


Directory: ./
File: include/sot/core/exception-tools.hh
Date: 2024-10-13 12:22:59
Exec Total Coverage
Lines: 0 2 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /*
2 * Copyright 2010,
3 * François Bleibel,
4 * Olivier Stasse,
5 *
6 * CNRS/AIST
7 *
8 */
9
10 #ifndef __SOT_TOOLS_EXCEPTION_H
11 #define __SOT_TOOLS_EXCEPTION_H
12
13 /* --------------------------------------------------------------------- */
14 /* --- INCLUDE --------------------------------------------------------- */
15 /* --------------------------------------------------------------------- */
16
17 #include <sot/core/exception-abstract.hh>
18
19 #include "sot/core/api.hh"
20 /* --------------------------------------------------------------------- */
21 /* --- CLASS ----------------------------------------------------------- */
22 /* --------------------------------------------------------------------- */
23
24 namespace dynamicgraph {
25 namespace sot {
26
27 /* \class ExceptionTools
28 */
29 class SOT_CORE_EXPORT ExceptionTools : public ExceptionAbstract
30
31 {
32 public:
33 enum ErrorCodeEnum {
34 GENERIC = ExceptionAbstract::TOOLS
35
36 ,
37 CORBA,
38 KALMAN_SIZE,
39 PARAMETER_SERVER
40 };
41
42 static const std::string EXCEPTION_NAME;
43 virtual const std::string &getExceptionName() const { return EXCEPTION_NAME; }
44
45 public:
46 ExceptionTools(const ExceptionTools::ErrorCodeEnum &errcode,
47 const std::string &msg = "");
48 ExceptionTools(const ExceptionTools::ErrorCodeEnum &errcode,
49 const std::string &msg, const char *format, ...);
50 virtual ~ExceptionTools(void) throw() {}
51 };
52
53 } // namespace sot
54 } // namespace dynamicgraph
55
56 #endif /* #ifndef __SOT_TOOLS_EXCEPTION_H */
57
58 /*
59 * Local variables:
60 * c-basic-offset: 2
61 * End:
62 */
63