FileError constructor

const FileError(
  1. FileErrorCode code,
  2. String message, {
  3. String? path,
  4. Object? cause,
})

Creates a FileError with a code and message.

Implementation

const FileError(this.code, this.message, {this.path, this.cause});