GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: include/sot/core/exception-signal.hh Lines: 0 3 0.0 %
Date: 2023-03-13 12:09:37 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_SIGNAL_EXCEPTION_H
11
#define __SOT_SIGNAL_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 ExceptionSignal
28
 */
29
class SOT_CORE_EXPORT ExceptionSignal : public ExceptionAbstract
30
31
{
32
 public:
33
  enum ErrorCodeEnum {
34
    GENERIC = ExceptionAbstract::SIGNAL
35
36
    ,
37
    READWRITE_LOCK,
38
    COPY_NOT_INITIALIZED,
39
    NOT_INITIALIZED,
40
    PLUG_IMPOSSIBLE,
41
    SET_IMPOSSIBLE,
42
    BAD_CAST
43
  };
44
45
  static const std::string EXCEPTION_NAME;
46
  virtual const std::string &getExceptionName(void) const {
47
    return EXCEPTION_NAME;
48
  }
49
50
 public:
51
  ExceptionSignal(const ExceptionSignal::ErrorCodeEnum &errcode,
52
                  const std::string &msg = "");
53
  ExceptionSignal(const ExceptionSignal::ErrorCodeEnum &errcode,
54
                  const std::string &msg, const char *format, ...);
55
  virtual ~ExceptionSignal(void) throw() {}
56
};
57
58
} /* namespace sot */
59
} /* namespace dynamicgraph */
60
61
#endif /* #ifndef __SOT_SIGNAL_EXCEPTION_H */
62
63
/*
64
 * Local variables:
65
 * c-basic-offset: 2
66
 * End:
67
 */