2021-08-20 13:26:00 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
|
|
|
|
class YatException implements Exception {
|
2022-10-12 17:09:57 +00:00
|
|
|
YatException({required this.text});
|
2021-08-20 13:26:00 +00:00
|
|
|
|
|
|
|
final String text;
|
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() => 'Yat exception: $text';
|
|
|
|
}
|