This commit is contained in:
2024-08-11 17:15:17 +08:00
parent 2dc0ee3307
commit 19527f17c3
32 changed files with 1082 additions and 417 deletions

View File

@@ -0,0 +1,9 @@
package com.aiosman.riderpro.data
class ServiceException(
override val message: String,
val code: Int = 0,
val data: Any? = null
) : Exception(
message
)