Files
sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/common/SodaException.kt

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)