mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-23 07:29:23 +01:00
14 lines
270 B
Dart
14 lines
270 B
Dart
|
import 'package:to_string/to_string.dart';
|
||
|
|
||
|
part 'exception.g.dart';
|
||
|
|
||
|
@ToString(ignoreNull: true)
|
||
|
class DbNotFoundException implements Exception {
|
||
|
const DbNotFoundException([this.message]);
|
||
|
|
||
|
@override
|
||
|
String toString() => _$toString();
|
||
|
|
||
|
final String? message;
|
||
|
}
|