FileNotFoundException constructor

FileNotFoundException(
  1. String filePath
)

Implementation

FileNotFoundException(String filePath) {
  this.message = 'File NOT found: $filePath';
}