Skip to content

Commit 8c2f293

Browse files
committed
Fixed nullability of extensions parameter in GQLMessageExceptionBase constructor
1 parent 3c7bb6b commit 8c2f293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharp.Data.GraphQL.Server/Exceptions.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type GraphQLException =
1616
new (msg) = { inherit Exception (msg) }
1717

1818
[<AbstractClass>]
19-
type GQLMessageExceptionBase (errorKind, msg, [<Optional>] extensions) =
19+
type GQLMessageExceptionBase (errorKind, msg, [<Optional>] extensions : _ | null) =
2020
inherit GraphQLException (msg)
2121
interface IGQLError with
2222
member _.Message = msg

0 commit comments

Comments
 (0)