AssetTypeCreditAlphaNum4 constructor

AssetTypeCreditAlphaNum4(
  1. String code,
  2. String issuerId
)

Implementation

AssetTypeCreditAlphaNum4(String code, String issuerId)
    : super(code, issuerId) {
  if (code.length < 1 || code.length > 4) {
    throw new AssetCodeLengthInvalidException();
  }
}