adam bien's blog

Exceptions Are Objects 📎

Exceptions are objects and should be treated as such. Organizing exceptions in an exception(s) package is problematic. Consequently you would also have to create packages for classes, interfaces, beans etc.

Usually you are not searching for classes, interfaces or exceptions during the development cycle, rather than for functionality first. It is a better idea to organize the code after domain responsibilities and not obvious nature. Also it easily possible to find exceptions with any modern IDE regardless of their location: all exceptions have to inherit from java.lang.Exception

It is also a bad idea to use util packages as kitchen sink.

See you at Java EE Workshops at MUC Airport, particularly Effective JavaEE and JavaEE Architectures!