Skip to content

Commit 18a8e84

Browse files
committed
Revert migration of NotSupportedException to NotImplementedException
1 parent 4e6ef57 commit 18a8e84

13 files changed

+13
-13
lines changed

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/GetClientWindowsResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ public override GetClientWindowsResult Read(ref Utf8JsonReader reader, Type type
3737

3838
public override void Write(Utf8JsonWriter writer, GetClientWindowsResult value, JsonSerializerOptions options)
3939
{
40-
throw new NotSupportedException();
40+
throw new NotImplementedException();
4141
}
4242
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/GetCookiesResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public override GetCookiesResult Read(ref Utf8JsonReader reader, Type typeToConv
3838

3939
public override void Write(Utf8JsonWriter writer, GetCookiesResult value, JsonSerializerOptions options)
4040
{
41-
throw new NotSupportedException();
41+
throw new NotImplementedException();
4242
}
4343
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/GetRealmsResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ public override GetRealmsResult Read(ref Utf8JsonReader reader, Type typeToConve
3737

3838
public override void Write(Utf8JsonWriter writer, GetRealmsResult value, JsonSerializerOptions options)
3939
{
40-
throw new NotSupportedException();
40+
throw new NotImplementedException();
4141
}
4242
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/GetUserContextsResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ public override GetUserContextsResult Read(ref Utf8JsonReader reader, Type typeT
3737

3838
public override void Write(Utf8JsonWriter writer, GetUserContextsResult value, JsonSerializerOptions options)
3939
{
40-
throw new NotSupportedException();
40+
throw new NotImplementedException();
4141
}
4242
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/InputSourceActionsConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal class InputSourceActionsConverter : JsonConverter<SourceActions>
2929
{
3030
public override SourceActions Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
3131
{
32-
throw new NotSupportedException();
32+
throw new NotImplementedException();
3333
}
3434

3535
public override void Write(Utf8JsonWriter writer, SourceActions value, JsonSerializerOptions options)

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Enumerable/LocateNodesResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public override LocateNodesResult Read(ref Utf8JsonReader reader, Type typeToCon
3838

3939
public override void Write(Utf8JsonWriter writer, LocateNodesResult value, JsonSerializerOptions options)
4040
{
41-
throw new NotSupportedException();
41+
throw new NotImplementedException();
4242
}
4343
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/InputOriginConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal class InputOriginConverter : JsonConverter<Origin>
2828
{
2929
public override Origin Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
3030
{
31-
throw new NotSupportedException();
31+
throw new NotImplementedException();
3232
}
3333

3434
public override void Write(Utf8JsonWriter writer, Origin value, JsonSerializerOptions options)

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Polymorphic/EvaluateResultConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ internal class EvaluateResultConverter : JsonConverter<EvaluateResult>
4141

4242
public override void Write(Utf8JsonWriter writer, EvaluateResult value, JsonSerializerOptions options)
4343
{
44-
throw new NotSupportedException();
44+
throw new NotImplementedException();
4545
}
4646
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Polymorphic/LogEntryConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ internal class LogEntryConverter : JsonConverter<Modules.Log.Entry>
4141

4242
public override void Write(Utf8JsonWriter writer, Modules.Log.Entry value, JsonSerializerOptions options)
4343
{
44-
throw new NotSupportedException();
44+
throw new NotImplementedException();
4545
}
4646
}

dotnet/src/webdriver/BiDi/Communication/Json/Converters/Polymorphic/MessageConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ internal class MessageConverter : JsonConverter<Message>
4141

4242
public override void Write(Utf8JsonWriter writer, Message value, JsonSerializerOptions options)
4343
{
44-
throw new NotSupportedException();
44+
throw new NotImplementedException();
4545
}
4646
}

0 commit comments

Comments
 (0)