Interface MoneyOverflowError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
MoneyOverflowErrorImpl

public interface MoneyOverflowError extends ErrorObject

Returned when a Money operation overflows the 64-bit integer range. See Money usage for more information.


Example to create an instance using the builder pattern

     MoneyOverflowError moneyOverflowError = MoneyOverflowError.builder()
             .message("{message}")
             .build()