Skip to content

Commit 0ed7b0a

Browse files
author
Menachem Hornbacher
authored
Mark ErrorException as nullable to match interface (restsharp#1548)
1 parent e3280ab commit 0ed7b0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RestSharp/RestResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public string Content
127127
/// <summary>
128128
/// The exception thrown during the request, if any
129129
/// </summary>
130-
public Exception ErrorException { get; set; }
130+
public Exception? ErrorException { get; set; }
131131

132132
/// <summary>
133133
/// The HTTP protocol version (1.0, 1.1, etc)

0 commit comments

Comments
 (0)