All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javastrava.service.exception.StravaAPIException Maven / Gradle / Ivy

The newest version!
package javastrava.service.exception;

import javastrava.model.StravaResponse;

/**
 * 

* Implementations of this interface will have the error message emitted by the Strava API available via the {@link #getResponse()} * method *

* * @author Dan Shannon * */ public interface StravaAPIException { /** * Return the error message emitted by the Strava API * * @return the response */ public StravaResponse getResponse(); /** * @param response * the response to set */ public void setResponse(final StravaResponse response); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy