Remove dynamic exceptions
[anna.git] / source / http / Method.cpp
index 7d4c751..3a15675 100644 (file)
@@ -17,7 +17,7 @@ anna_assign_enum(http::Method::Type) = {
 };
 
 http::Method::Type::_v http::Method::asType(const http::Token* token)
-throw() {
+{
   for(int ii = 0; anna_item_enum(http::Method::Type, ii) != NULL; ii ++) {
     if(token->match(anna_item_enum(http::Method::Type, ii)) == true)
       return (Type::_v) ii;
@@ -27,7 +27,7 @@ throw() {
 }
 
 string http::Method::asString(const http::Method::Type::_v type)
-throw() {
+{
   string result("http::Method { Name: ");
   result += Type::asCString(type);
   return result += " }";