} else if (conversionType == Money.ConversionType.AutomatedConversion) {
final Money tmp = money.clone();
tmp.convertTo(this.currency());
return this.close(tmp, n);
} else
throw new LibraryException("currency mismatch and no conversion specified"); // QA:[RG]::verified // TODO: message
}