Unchecked Java: Say goodbye to checked exceptions
1–10 of 297 posts
Re: Unchecked Java: Say goodbye to checked exceptions
#2FYI this too is already supported by Manifold...
Re: Unchecked Java: Say goodbye to checked exceptions
#3I actually quite like checked exceptions, and miss them in other languages. My biggest gripe with exceptions is that a few calls deep, you can no longer tell whether calling something might throw or not, and what type of exception it might potentially throw.
Re: Unchecked Java: Say goodbye to checked exceptions
#4FYI this too is already supported by Manifold...
That is referenced in the readme. :) TBH, I hadn't seen either one before today, and they both look really nice.
The type-safe JSON feature in Manifold could be incredibly useful.
Re: Unchecked Java: Say goodbye to checked exceptions
#5FYI this too is already supported by Manifold...
That is referenced in the readme. :) TBH, I hadn't seen either one before today, and they both look really nice. The type-safe JSON feature in Manifold could be incredibly useful.
Yes. It's fantastic see: https://debugagent.com/series/manifold
Re: Unchecked Java: Say goodbye to checked exceptions
#6Neat. Reminds me of lombok in that it really only affects compile-time and makes for cleaner code in a way that many (but not all) developers would want.
Re: Unchecked Java: Say goodbye to checked exceptions
#7Allowing unchecked exceptions in languages without explicit error handling or the return of error values is a mistake IMO! Makes it impossible to call a function safely
Re: Unchecked Java: Say goodbye to checked exceptions
#8please, for the love of what's good in the world... NO.
checked exceptions ARE A FEATURE, a CORE ONE.
Re: Unchecked Java: Say goodbye to checked exceptions
#9FYI this too is already supported by Manifold...
What is manifold in this context?
Re: Unchecked Java: Say goodbye to checked exceptions
#10Manifold already provides this feature:
https://github.com/manifold-systems/manifold/tree/master/man...
With an article having the same name as your post:
https://github.com/manifold-systems/manifold/blob/master/doc...