-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exception handling during parsing #12
Comments
Hi, Thanks for using it! :) Sure, I can make that change. I'll try to perform a new release today or maybe tomorrow if I can. |
I performed a new release, 1.0.22. If you notice anything else feel free to open another issue :) |
That was fast! Thanks :) |
@Dahausa I noticed that you are not a XsdParser stargazer yet. Could you please give a star to increase popularity. Thanks |
Sure! You got a new star :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
first of all, thanks for this library. :)
I haven't found any other doing the same thing you do with your library.
I'm considering to use it in an application.
But one thing that prevents me from using it is the fact how exceptions are handled.
Every exception during parsing is caught inside the try/catch.
So a client using the library doen't know that something went wrong. :-(
In my opinion it'll be helpfull to propagate any exception as a runtime exception to clients in order that the client is able to react on that exception.
What I propose is...
to change this:
into this:
What do you think?
Shall I submit a pull request to change this?
The text was updated successfully, but these errors were encountered: