Skip to content

Commit 295f272

Browse files
authored
BidiException instead of DevToolsException in getBiDi (#12284)
Bidi Exception had to be used here BidiException should've been here instead of DevToolsException here
1 parent a597e72 commit 295f272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/firefox/FirefoxDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ public BiDi getBiDi() {
380380
}
381381

382382
return maybeGetBiDi()
383-
.orElseThrow(() -> new DevToolsException("Unable to initialize Bidi connection"));
383+
.orElseThrow(() -> new BiDiException("Unable to initialize Bidi connection"));
384384
}
385385

386386
@Override

0 commit comments

Comments
 (0)