class EnvNotFoundException implements Exception { final String message; EnvNotFoundException([this.message = '']); @override String toString() => 'EnvNotFoundException: $message'; }