* @see Task
*/
public Task addTask(String title, String dueDate) throws JproworkRuntimeException {
String token = RemoteAPIHandler.getToken();
if (token == null) {
throw new InvalidTokenException("Invalid token or none given");
}
String responseJson = null;
String params = "token=" + token;
params += "&";