The "ClientHandler" class implements Runnable, but when I create the
thread (Thread t = new Thread(new ClientHandler(clientSocket))

I get an error saying there is no such constructor for ClientHandler, I looked into the API and it had nothing on Runnable's constructor(s).
Help please.