[Kotlin + Spring Boot + SpringDataJPA + H2 + Gradle] 3. GlobalException handler를 이용한 restApi 에러 처리
프로젝트 구조 CommonException.ktpackage com.contact.management.exceptionclass CommonException(val exceptionCode: CommonExceptionCode) : RuntimeException() CommonExceptionCode.ktpackage com.contact.management.exceptionimport org.springframework.http.HttpStatusenum class CommonExceptionCode( val status: HttpStatus, val message: String,) { USER_NOT_FOUND(HttpStatus.NOT_FOUND, "사용자를 찾을 수 없습니다...