
com.labijie.application.ErrorCodedStatusException.kt Maven / Gradle / Ivy
package com.labijie.application
import org.springframework.http.HttpStatus
/**
* Created with IntelliJ IDEA.
* @author Anders Xiao
* @date 2019-12-12
*/
open class ErrorCodedStatusException(
error: String,
message: String,
cause: Throwable? = null
) : ErrorCodedException(error, message, cause) {
open val status: HttpStatus = HttpStatus.CONFLICT
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy