Remove dynamic exceptions
[anna.git] / source / http / parser / Abstract.cpp
index 04aab1e..7b1420b 100644 (file)
@@ -42,7 +42,7 @@ anna_assign_enum(parser::Abstract::ClassType) = {
 }
 
 string http::parser::Abstract::asString() const
-throw() {
+{
   string result("http::parser::Abstract { ");
   result += ClassType::asCString(a_classType);
   return result += " }";
@@ -51,7 +51,7 @@ throw() {
 
 /*static*/
 void http::parser::Abstract::setState(http::Transport& transport, const http::parser::Abstract::ClassType::_v classType)
-throw() {
+{
   /*
    * Se repite el Wait-Message para llenar el hueco de ClassType::None
    */
@@ -64,7 +64,7 @@ throw() {
 
 /*static*/
 void http::parser::Abstract::appendExtraParameter(http::Message* message, const std::string& extraParameter)
-throw() {
+{
   message->appendExtraParameter(extraParameter);
 }
 
@@ -77,14 +77,14 @@ throw() {
  */
 /*static*/
 void http::parser::Abstract::setLastChunkedByte(http::Transport& transport, const int lastChunkedByte)
-throw() {
+{
   transport.a_lastChunkedByte += lastChunkedByte;
 }
 
 // Sólo se puede usar en caso de Mensajes Transfer-encoding: chunked
 /*static*/
 const DataBlock& http::parser::Abstract::getFullMessage(http::Transport& transport)
-throw() {
+{
   return *transport.a_fullMessage;
 }