nc-photos/np_db/lib/src/exception.dart

13 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;
}