dev
dart 9 lines 267 Bytes
Raw
1 class WowneroTransactionNoInputsException implements Exception {
2 WowneroTransactionNoInputsException(this.inputsSize);
3
4 int inputsSize;
5
6 @override
7 String toString() =>
8 'Not enough inputs ($inputsSize) selected. Please select more under Coin Control';
9 }