FileNotFoundException class
class FileNotFoundException implements Exception {
final String message;
const FileNotFoundException([this.message = ""]);
String toString() => "FileNotFoundException: $message";
}
Implements
Constructors
Properties
final String message #
final String message
Methods
String toString() #
Returns a string representation of this object.
docs inherited from Object
String toString() => "FileNotFoundException: $message";