FileNotFound constructor

FileNotFound(
  1. String msg
)

Implementation

FileNotFound(String msg)
    : super(
        'file not found: $msg',
        ErrorCodes.fileNotFound,
        errorCode: HttpStatus.notFound,
      );