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

com.what3words.javawrapper.response.ErrorResponse Maven / Gradle / Ivy

There is a newer version: 3.1.21
Show newest version
package com.what3words.javawrapper.response;

import com.google.gson.GsonBuilder;

public class ErrorResponse {
    private APIError error;

    public APIError getError() {
        return error;
    }
    
    public String toString() {
        return new GsonBuilder().setPrettyPrinting().create().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy