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

7 lines
222 B
Kotlin

package com.cubetiqs.libra.moneyutils
/**
* Default money currency state exception
*/
class MoneyCurrencyStateException(message: String? = null) :
IllegalStateException(message ?: "money currency is illegal state!")