Response.fileNotAnalyzed constructor

Response.fileNotAnalyzed(
  1. Request request,
  2. String file
)

Initialize a newly created instance to represent the FILE_NOT_ANALYZED error condition.

Implementation

Response.fileNotAnalyzed(Request request, String file)
    : this(request.id,
          error: RequestError(RequestErrorCode.FILE_NOT_ANALYZED,
              'File is not analyzed: $file.'));