syncloud.google.docs.ErrorCodeConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syncloud-google-docs Show documentation
Show all versions of syncloud-google-docs Show documentation
Google Docs Syncloud Starage Adapter
The newest version!
package syncloud.google.docs;
import com.google.api.client.http.HttpResponseException;
import syncloud.storage.ErrorCode;
public class ErrorCodeConverter {
public static ErrorCode convert(Throwable e) {
ErrorCode code = ErrorCode.Unknown;
if (e instanceof HttpResponseException)
code = ErrorCode.TransportError;
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy