diff options
Diffstat (limited to 'ms/controllerblueprints/modules/service/src/main')
-rw-r--r-- | ms/controllerblueprints/modules/service/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/service/controller/ControllerBlueprintExceptionHandler.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ms/controllerblueprints/modules/service/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/service/controller/ControllerBlueprintExceptionHandler.kt b/ms/controllerblueprints/modules/service/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/service/controller/ControllerBlueprintExceptionHandler.kt index 5b92369f8..4537dbb9d 100644 --- a/ms/controllerblueprints/modules/service/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/service/controller/ControllerBlueprintExceptionHandler.kt +++ b/ms/controllerblueprints/modules/service/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/service/controller/ControllerBlueprintExceptionHandler.kt @@ -35,7 +35,7 @@ import org.springframework.web.bind.annotation.ExceptionHandler @RestControllerAdvice("org.onap.ccsdk.cds.controllerblueprints") open class ControllerBlueprintExceptionHandler { - companion object ControllerBlueprintExeptionHandler { + companion object ControllerBlueprintExceptionHandler { val LOG = LoggerFactory.getLogger(ControllerBlueprintExceptionHandler::class.java) } @@ -55,4 +55,3 @@ open class ControllerBlueprintExceptionHandler { return ResponseEntity(errorMessage, HttpStatus.resolve(errorCode!!.httpCode)) } } - |