We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c0d6c commit 577dc77Copy full SHA for 577dc77
src/main/kotlin/org/exploit/keeper/component/exception/ConstrainValidationException.kt renamed to src/main/kotlin/org/exploit/keeper/component/exception/ConstrainValidationExceptionMapper.kt
@@ -6,7 +6,7 @@ import jakarta.ws.rs.ext.ExceptionMapper
6
import jakarta.ws.rs.ext.Provider
7
8
@Provider
9
-class ConstrainValidationException: ExceptionMapper<ConstraintViolationException> {
+class ConstrainValidationExceptionMapper: ExceptionMapper<ConstraintViolationException> {
10
override fun toResponse(p0: ConstraintViolationException): Response {
11
return Response.status(Response.Status.BAD_REQUEST)
12
.build()
0 commit comments