mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
10 lines
No EOL
207 B
Dart
10 lines
No EOL
207 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class YatException implements Exception {
|
|
YatException({@required this.text});
|
|
|
|
final String text;
|
|
|
|
@override
|
|
String toString() => 'Yat exception: $text';
|
|
} |