* Obtiene el comando desde un pedido HTTP completo.
*/
friend std::istream& operator>>(std::istream& is,
- Command& command) throw(HTTPError, sockerr);
+ Command& command) throw(HTTPError, sockerr, ios::failure);
/**
* Convierte el comando a un pedido HTTP completo.
build();
}
-istream& operator>>(istream& is, Command& command) throw(HTTPError, sockerr) {
+istream& operator>>(istream& is, Command& command)
+ throw(HTTPError, sockerr, ios::failure) {
#ifdef DEBUG
cerr << __FILE__ << "(" << __LINE__ << ")"
<< ": operator>>()" << endl;