Giter Club home page Giter Club logo

Comments (5)

yepher avatar yepher commented on July 17, 2024

This is a great idea. There is already a custom exception so it would not be hard to parse that out at the transport layer and set in member variables.

I would be glad to review a pull request if you are interested in adding this functionality.

from java-sparkpost.

yepher avatar yepher commented on July 17, 2024

Adding an array of parsed error responses from server to be more POJO friendly. Here is an example usage:

    catch (SparkPostErrorServerResponseException e) {
            System.out.println("GOOD: we got the expected exception");
            System.out.println(e.getMessage());

            if (e.getServerErrorResponses() != null) {
                for (ServerErrorResponse error : e.getServerErrorResponses().getErrors()) {
                    System.out.println("ERROR: " + error);
                }
            }
        }

This is the structure of the error response:

@Data
@EqualsAndHashCode(callSuper = true)
public class ServerErrorResponse extends Base {

    @Description(value = "Error message from server", sample = {""})
    private String message;

    @Description(value = "Error descrption from server", sample = {""})
    private String description;

    @Description(value = "Error code from server", sample = {""})
    private String code;

}


from java-sparkpost.

yepher avatar yepher commented on July 17, 2024

Added several samples that demonstrates the usage of the new field:
https://github.com/SparkPost/java-sparkpost/blob/feature/better_exceptions_issue53/apps/sparkpost-samples-app/src/main/java/com/sparkpost/error/samples/SendInvalidFromAddress.java#L86

@cen1 is this what you were thinking?

from java-sparkpost.

cen1 avatar cen1 commented on July 17, 2024

@yepher thanks, will check it out in the following days and give feedback.

from java-sparkpost.

cen1 avatar cen1 commented on July 17, 2024

Sorry for late response. Just checked out the master and this is exactly what I had in mind. Thank you.

from java-sparkpost.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.