
tech.figure.eventstream.stream.infrastructure.Errors.kt Maven / Gradle / Ivy
@file:Suppress("unused")
package tech.figure.eventstream.stream.infrastructure
import java.lang.RuntimeException
open class ClientException(message: kotlin.String? = null, val statusCode: Int = -1, val response: Response? = null) : RuntimeException(message) {
companion object {
private const val serialVersionUID: Long = 123L
}
}
open class ServerException(message: kotlin.String? = null, val statusCode: Int = -1, val response: Response? = null) : RuntimeException(message) {
companion object {
private const val serialVersionUID: Long = 456L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy