Some checks failed
Build and Push Multi-Arch Docker Image / build-and-push (push) Failing after 38s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
9 lines
192 B
Dart
9 lines
192 B
Dart
class EnvNotFoundException implements Exception {
|
|
final String message;
|
|
EnvNotFoundException([this.message = '']);
|
|
|
|
@override
|
|
String toString() => 'EnvNotFoundException: $message';
|
|
}
|
|
|