Where to store custom exception classes in a Grails project?

Where are you planning to place your own exception classes in Grails? IMO, they are not domain classes, and they are not utilities.

Should I / I can create a new folder exceptionsunder grails-app?

+5
source share
1 answer

Place them under src / groovy (if they are groovy classes) and src / java (if they are Java classes).

+16
source

All Articles