Header menu logo FSharp.Formatting

SourceError Type

Error reported from the F# compiler consists of location (start and end), error kind and the message (wrapped in a single case discriminated union with constructor SourceError)

Union cases

Union case Description

SourceError(start, finish, errorKind, message)

Full Usage: SourceError(start, finish, errorKind, message)

Parameters:
    start : int * int
    finish : int * int
    errorKind : ErrorKind
    message : string

Error reported from the F# compiler consists of location (start and end), error kind and the message

start : int * int
finish : int * int
errorKind : ErrorKind
message : string

Type something to start searching.