generated from pricelees/issue-pr-template
10 lines
186 B
Kotlin
10 lines
186 B
Kotlin
package roomescape.common.exception
|
|
|
|
import org.springframework.http.HttpStatus
|
|
|
|
interface ErrorCode {
|
|
val httpStatus: HttpStatus
|
|
val errorCode: String
|
|
val message: String
|
|
}
|