model-citizen
model-citizen copied to clipboard
CreateModelException should be an unchecked exception
In every unit test we write that creates models from blueprints, we have to add CreateModelException to the test signature. This adds noise and doesn't really add to the documentation of the test.
We could change CreateModelException to be unchecked instead (inherit from RuntimeException), since the would equally fail the test in case of errors but would be much more convenient to use.
:+1: