Remove dynamic exceptions
[anna.git] / source / comm / Codec.cpp
index 4d13c18..08e318b 100644 (file)
@@ -16,17 +16,17 @@ using namespace std;
 using namespace anna;
 
 const comm::Variable* comm::Codec::attach(const char* name, Second& value)
-throw(RuntimeException) {
+noexcept(false) {
   return CompatCodec::attach(name, size(), value.refValue());
 }
 
 const comm::Variable* comm::Codec::attach(const char* name, Millisecond& value)
-throw(RuntimeException) {
+noexcept(false) {
   return CompatCodec::attach(name, size(), (int&) value.refValue());
 }
 
 const comm::Variable* comm::Codec::attach(const char* name, Microsecond& value)
-throw(RuntimeException) {
+noexcept(false) {
   return CompatCodec::attach(name, size(), (S64&) value.refValue());
 }