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