Skip to content

Instantly share code, notes, and snippets.

View rmorrise's full-sized avatar

Russell Morrisey rmorrise

  • Corporation Service Company
  • Wilmington, DE
View GitHub Profile
@rmorrise
rmorrise / ExceptionCausingController.groovy
Created April 23, 2015 15:55
Grails wrapped exception handling test
package wrapped.exception
class ExceptionCausingController {
def wrappingService
def index() {
wrappingService.serviceMethod()
}
}