@@ -28,10 +28,20 @@ namespace log4cpp {
28
28
29
29
PropertyConfiguratorImpl ();
30
30
virtual ~PropertyConfiguratorImpl ();
31
- virtual void doConfigure (const std::string& initFileName)
32
- throw (ConfigureFailure);
33
- virtual void doConfigure (std::istream& in)
34
- throw (ConfigureFailure);
31
+ /* *
32
+ *
33
+ * @param initFileName
34
+ * @exception ConfigureFailure if the method encountered a read or
35
+ * syntax error.
36
+ */
37
+ virtual void doConfigure (const std::string& initFileName);
38
+ /* *
39
+ *
40
+ * @param in
41
+ * @exception ConfigureFailure if the method encountered a read or
42
+ * syntax error.
43
+ */
44
+ virtual void doConfigure (std::istream& in);
35
45
36
46
protected:
37
47
/* *
@@ -40,9 +50,10 @@ namespace log4cpp {
40
50
@todo setting other properties like 'additivity'.
41
51
@param categoryname Name of the category to configure.
42
52
The name 'rootCategory' refers to the root Category.
43
- throw ConfigureFailure
53
+ * @exception ConfigureFailure if the method encountered a read or
54
+ * syntax error.
44
55
**/
45
- void configureCategory (const std::string& categoryname) throw (ConfigureFailure) ;
56
+ void configureCategory (const std::string& categoryname);
46
57
47
58
/* *
48
59
* Get a list of categories for which we should do the configuration. This simply
@@ -51,7 +62,7 @@ namespace log4cpp {
51
62
*/
52
63
void getCategories (std::vector<std::string>& categories) const ;
53
64
54
- void instantiateAllAppenders () throw(ConfigureFailure) ;
65
+ void instantiateAllAppenders ();
55
66
56
67
/* *
57
68
* Intantiate and configure the appender referred to by the given name. This method searches the
0 commit comments