summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/Config_Handlers/Common.h
blob: dec8f4b497aee4efd52775ae8b2297b5c0266571 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// $Id$
/**
 * @file Common.h
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Some common definitions for all config_handlers.
 */
#ifndef CONFIG_HANDLERS_COMMON_H
#define CONFIG_HANDLERS_COMMON_H
#include <string>

namespace CIAO
{
  namespace Config_Handlers
  {
    /**
     * @class Config_Error
     * @brief Exception to communicate a config_handlers error
     */
    class Config_Error
    {
    public:
      Config_Error (const std::basic_string<ACE_TCHAR> &name,
                    const std::basic_string<ACE_TCHAR> &error) :
        name_ (name),
        error_ (error)
      {};
      
      void add_name (const std::basic_string<ACE_TCHAR> &name)
      {
        name_ = name + ACE_TEXT (":") + name_;
      }

      /// Some identifying information about the element that
      /// caused the error
      std::basic_string<ACE_TCHAR> name_;

      /// A human readable error message
      std::basic_string<ACE_TCHAR> error_;

    };
  }
}
#endif /* CONFIG_HANDLERS_COMMON_H */