Skip to content

Commit

Permalink
[KAN-8] global exception 처리 작업 - lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkyoungdeok committed Mar 28, 2024
1 parent ce26cd9 commit c18e819
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ import org.springframework.http.HttpStatus
import org.springframework.web.server.ResponseStatusException

open class GlobalException : ResponseStatusException {
constructor(status: HttpStatus?) : super(status!!) {}
constructor(status: HttpStatus?, reason: String?) : super(status!!, reason) {}
constructor(status: HttpStatus?) : super(status!!)
constructor(status: HttpStatus?, reason: String?) : super(status!!, reason)
constructor(status: HttpStatus?, reason: String?, cause: Throwable?) : super(
status!!,
reason,
cause
) {
}
)

companion object {
private const val serialVersionUID = -1L
Expand Down

0 comments on commit c18e819

Please sign in to comment.