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

syncloud.google.docs.ErrorCodeConverter Maven / Gradle / Ivy

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