AssetTypeCreditAlphaNum12 constructor

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

Implementation

AssetTypeCreditAlphaNum12(String code, String issuerId)
    : super(code, issuerId) {
  if (code.length < 5 || code.length > 12) {
    throw new AssetCodeLengthInvalidException();
  }
}