problem when trying to inherit from EthernetClient class

Ok, I found a solution, my constructor was wrong, the following is working now:

class LEDMatrixEthernetClient : public EthernetClient {
public:
    LEDMatrixEthernetClient(const EthernetClient &client) : EthernetClient(client) {};
    String getHttpRequest();
};