studio.crud.feature.auth.exception.facebookExceptions.kt Maven / Gradle / Ivy
package studio.crud.feature.auth.exception
import studio.crud.feature.core.exception.ServerException
import studio.crud.feature.core.exception.annotation.ExceptionMetadata
import studio.crud.feature.core.exception.annotation.ExceptionParam
@ExceptionMetadata
class FacebookUidMismatchException : ServerException("Facebook UID does not match")
@ExceptionMetadata(
params = [
ExceptionParam("reason")
]
)
class FacebookTokenParsingFailedException(val reason: String) : ServerException("Failed to retrieve information from the Facebook access token")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy