dev
dart 9 lines 265 Bytes
Raw
1 class MoneroTransactionNoInputsException implements Exception {
2 MoneroTransactionNoInputsException(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 }