feiyu02
2024-04-25 0392c333ed3d987cb2ab3dac4e1a972cff405f21
src/main/kotlin/cn/flightfeather/supervision/common/exception/BizException.kt
ÎļþÃû´Ó src/main/kotlin/cn/flightfeather/supervision/common/exception/ResponseErrorException.kt ÐÞ¸Ä
@@ -1,9 +1,9 @@
package cn.flightfeather.supervision.common.exception
/**
 * å…è®¸æŽ¥å£è¿”回的业务层面的错误
 * å…è®¸æŽ¥å£è¿”回的业务层面错误
 */
class ResponseErrorException : Exception {
class BizException : Exception {
    constructor():super()
    constructor(message: String) : super(message)
    constructor(message: String, cause: Throwable) : super(message, cause)