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

com.tairitsu.ignotus.exception.business.ModelNotFoundException.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 ModelNotFoundException : SingleApiException {
    companion object {
        const val CODE = "model_not_found"
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy