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

com.tairitsu.ignotus.exception.business.AuthenticateFailedException.kt Maven / Gradle / Ivy

There is a newer version: 1.0.32
Show newest version
package com.tairitsu.ignotus.exception.business

import com.tairitsu.ignotus.exception.SingleApiException

/**
 * 业务异常:权限不足
 */
class AuthenticateFailedException : SingleApiException {
    companion object {
        const val CODE = "authenticate_failed"
    }

    constructor(detail: String) : super(403, CODE, detail)

    constructor() : super(403, CODE, Translation.translateDetail(CODE))

    init {
        this.title = Translation.translateTitle(CODE)
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy