Remove dynamic exceptions
[anna.git] / example / diameter / launcher / MyCounterRecorder.hpp
index 708c408..d6b8158 100644 (file)
@@ -28,10 +28,10 @@ class MyCounterRecorder : public anna::oam::CounterRecorder {
   std::string a_fixedLine;
 
   // pure virtual definitions:
-  void open() throw(anna::RuntimeException);
-  void apply(const anna::oam::Counter& counter) throw(anna::RuntimeException);
-  void close() throw();
-  std::string asString() const throw();
+  void open() noexcept(false);
+  void apply(const anna::oam::Counter& counter) noexcept(false);
+  void close() ;
+  std::string asString() const ;
 
 public:
   MyCounterRecorder(const std::string &fnp);