WebDriver/src/WebDriver/WDSessionNotCreated.class.st

14 lines
266 B
Smalltalk

"
A new session could not be created.
"
Class {
#name : #WDSessionNotCreated,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDSessionNotCreated class >> matchesErrorCode: errCode [
^ errCode = 'session not created'
]