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

7 lines
211 B
Kotlin

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