Code Monkey home page Code Monkey logo

Comments (6)

slintes avatar slintes commented on August 15, 2024

I dont't think that would be a good idea:

  1. The EtcdException is directly representing an error response of etcd, see it's public fields, and where it is instantiated. I guess it was on purpose that the default constructor was overwritten, so that you can't use the other constructors of Exception.
  2. Even when the first point would not be there: I would prefer a more generic or a self created exception, which is related to your usecase. For example: if you use etcd for storing configuration data, then throw e.g. your own ConfigurationException. If you don't like to have your own exceptions, throw e.g. an IOException (because reading and writing configuration data is an I/O operation). This way the other parts of your application don't need to know anything about etcd and etcd4j, which is cleaner imho.

Just my 2 cents :)

from etcd4j.

ghristov avatar ghristov commented on August 15, 2024

Well I think I might agree on the ConfigurationException. Btw is there a way to communicate without spamming here?

from etcd4j.

slintes avatar slintes commented on August 15, 2024

At least I don't know another way to communicate...

from etcd4j.

jurmous avatar jurmous commented on August 15, 2024

Communicating through issues is I think the way Github works. It forces you to think which issues are open so it focusses on action. So you are welcome to open any questions/issues you encounter. If the project grows so big that user questions/issues in one store are too confusing I would probably add a link in the README for a new recommended place.

I agree with @slintes. EtcdExceptions should only be thrown by etcd itself so it keeps true to its original format and purpose. If you want to handle the exceptions on multiple places in your own code it is best to wrap the exceptions in your own defined exception. This way it is also easier to replace etcd4j with something different if something better comes up or if etcd4j changes the way exceptions work it is easier for you to adapt.

@ghristov It is also possible to "pipe" multiple types of exceptions to one catch block.

try{
    promise.get();
} catch (IOException | EtcdException | TimeoutException e) {
    LOGGER.warn(e.getMessage());
}

But one thing that I didn't do and could possibly do is letting EtcdException extend IOException. It would save 1 catch in a generic try catch handler. But it would make EtcdException a bit more hidden so you need to add it manually to a catch block. What are your thoughts?

from etcd4j.

ghristov avatar ghristov commented on August 15, 2024

Ok agreed that EtcdException is ok like this. Actually I capture EtcdException,IOException, TimeoutException and throw ConfigurationException.

Regarding extending IOException... I think now is better. Like you said already, extending it you will hide information. Leave it that way. I will close this issue.

from etcd4j.

jurmous avatar jurmous commented on August 15, 2024

👍

from etcd4j.

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.