cake_wallet/lib/store/yat/yat_exception.dart

10 lines
207 B
Dart
Raw Normal View History

import 'package:flutter/foundation.dart';
class YatException implements Exception {
YatException({@required this.text});
final String text;
@override
String toString() => 'Yat exception: $text';
}