All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.svix.kotlin.internal.infrastructure.Errors.kt Maven / Gradle / Ivy

@file:Suppress("unused")
package com.svix.kotlin.internal.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 - 2024 Weber Informatics LLC | Privacy Policy