Remove dynamic exceptions
[anna.git] / source / dbms / LongBlock.cpp
index da1796a..09f1146 100644 (file)
@@ -13,7 +13,7 @@
 using namespace anna;
 
 dbms::LongBlock& dbms::LongBlock::operator = (const dbms::LongBlock & other)
-throw(RuntimeException) {
+noexcept(false) {
   if(this == &other)
     return *this;
 
@@ -26,14 +26,14 @@ throw(RuntimeException) {
 }
 
 dbms::LongBlock& dbms::LongBlock::operator = (const anna::DataBlock & value)
-throw(RuntimeException) {
+noexcept(false) {
   a_value = value;
   setNull(a_value.isEmpty());
   return *this;
 }
 
 std::string dbms::LongBlock::asString() const
-throw() {
+{
   std::string result("dbms::LongBlock { ");
   result += dbms::Data::asString();
   result += " | Size: ";