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