moneyutils/src/main/kotlin/com/cubetiqs/libra/moneyutils/MoneyCurrencyStateException.kt

7 lines
222 B
Kotlin
Raw Normal View History

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