[fea]
[all]
[访客模式标识]
This commit is contained in:
yangyakun
2024-12-26 17:31:22 +08:00
parent 434d781511
commit 75f557ed6d
12 changed files with 73 additions and 12 deletions

View File

@@ -3,7 +3,6 @@ package com.mogo.och.data.db.exception
class DbException: RuntimeException {
var code:Int = 0
var msg:String = ""
constructor() : super()
constructor(code:Int, message: String) : super("${code}_${message}"){
this.code = code
this.msg = message