Files
spring-restdocs/samples/rest-notes-grails/grails-app/controllers/com/example/InternalServerErrorController.groovy
Jennifer Strater 64803b5fae Add Grails sample app
Closes gh-250
2016-05-31 10:00:40 +01:00

12 lines
216 B
Groovy

package com.example
class InternalServerErrorController {
def index() {
render(contentType: 'application/json') {
error = 500
message = "Internal server error"
}
}
}