12 lines
193 B
Groovy
12 lines
193 B
Groovy
package com.example
|
|
|
|
class NotFoundController {
|
|
|
|
def index() {
|
|
render(contentType: 'application/json') {
|
|
error = 404
|
|
message = "Not Found"
|
|
}
|
|
}
|
|
}
|