Remove dynamic exceptions
[anna.git] / source / http / wims20 / ClientSide.cpp
index 2aef3ea..98f267a 100644 (file)
@@ -20,7 +20,7 @@ using namespace anna;
  * cada vez que tengamos que calcular la URI.
  */
 void http::wims20::ClientSide::addOtherLevel(const std::string& otherLevel)
-throw(RuntimeException) {
+noexcept(false) {
   if(a_strOtherLevels == NULL)
     a_strOtherLevels = Abstract::createString(otherLevel);
   else {
@@ -44,7 +44,7 @@ throw(RuntimeException) {
    \li query_parameters: Lista de parámetros. Si hay más de un parámetro se separará con '&'.
  */
 void http::wims20::ClientSide::codeOn(http::Request& request)
-throw(RuntimeException) {
+noexcept(false) {
   a_uri = Abstract::calculeFixedPart();
 
   if(Abstract::hasOtherLevels())