mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-22 15:09:22 +01:00
13 lines
270 B
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;
|
|
}
|