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

io.logto.sdk.core.exception.UriConstructionException.kt Maven / Gradle / Ivy

The newest version!
package io.logto.sdk.core.exception

class UriConstructionException(
    type: Type,
    cause: Throwable? = null,
) : RuntimeException(type.name, cause) {
    enum class Type {
        INVALID_ENDPOINT,
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy