All Questions
2 questions
5
votes
1
answer
364
views
"Detailed" exception class hierarchy
I'm designing an modular exception class hierarchy to use in various projects. I intend to inherit from std::exception in order to be maximally compatible with any ...
2
votes
1
answer
126
views
Class hierarchy for informative exceptions in ASP.NET core
I have a base class called ExceptionPlus(please suggest a better name). Which is being inherited by multiple child class like BusinessNotFoundException, ArgumentInvalidException etc.
My question is ...