13 lines
316 B
Kotlin
13 lines
316 B
Kotlin
package kr.co.vividnext.sodalive.common
|
|
|
|
class SodaException(
|
|
message: String? = null,
|
|
val errorProperty: String? = null,
|
|
val messageKey: String? = null
|
|
) : RuntimeException(message)
|
|
|
|
class AdsChargeException(
|
|
message: String? = null,
|
|
val messageKey: String? = null
|
|
) : RuntimeException(message)
|