diff --git a/rb/lib/selenium/webdriver/common/error.rb b/rb/lib/selenium/webdriver/common/error.rb index be7be4113eb49..829049da57b94 100644 --- a/rb/lib/selenium/webdriver/common/error.rb +++ b/rb/lib/selenium/webdriver/common/error.rb @@ -159,7 +159,12 @@ class IMEEngineActivationFailedError < WebDriverError; end # 31 # class InvalidSelectorError < WebDriverError; end # 32 - # 33 + + # + # A new session could not be created. + # + + class SessionNotCreatedError < WebDriverError; end # 33 # # Indicates that the target provided to the actions #move method is @@ -202,7 +207,7 @@ class MoveTargetOutOfBoundsError < WebDriverError; end # 34 IMENotAvailableError, # 30 IMEEngineActivationFailedError, # 31 InvalidSelectorError, # 32 - nil, # 33 + SessionNotCreatedError, # 33 MoveTargetOutOfBoundsError # 34 ]