Skip to content

Commit ea862d6

Browse files
committed
Move the rest of NotImplementedException to NotSupportedException
1 parent fd61919 commit ea862d6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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 NotImplementedException();
44+
throw new NotSupportedException();
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 NotImplementedException();
44+
throw new NotSupportedException();
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 NotImplementedException();
44+
throw new NotSupportedException();
4545
}
4646
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ internal class RealmInfoConverter : JsonConverter<RealmInfo>
4747

4848
public override void Write(Utf8JsonWriter writer, RealmInfo value, JsonSerializerOptions options)
4949
{
50-
throw new NotImplementedException();
50+
throw new NotSupportedException();
5151
}
5252
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ internal class RemoteValueConverter : JsonConverter<RemoteValue>
6969

7070
public override void Write(Utf8JsonWriter writer, RemoteValue value, JsonSerializerOptions options)
7171
{
72-
throw new NotImplementedException();
72+
throw new NotSupportedException();
7373
}
7474
}

0 commit comments

Comments
 (0)