money-module/src/main/kotlin/com/cubetiqs/money/MoneyCurrencyStateException.kt

7 lines
211 B
Kotlin
Raw Normal View History

package com.cubetiqs.money
2020-08-26 20:19:06 +07:00
/**
* Default money currency state exception
*/
class MoneyCurrencyStateException(message: String? = null) :
IllegalStateException(message ?: "money currency is illegal state!")