timetable/module-server/src/main/kotlin/de/twomartens/timetable/support/exception/HttpStatusException.kt

6 lines
222 B
Kotlin

package de.twomartens.timetable.support.exception
import org.springframework.http.HttpStatus
class HttpStatusException(val status: HttpStatus, message: String, cause: Throwable?):
RuntimeException(message, cause)