WebDriver/src/WebDriver/WDTimeout.class.st

14 lines
256 B
Smalltalk

"
An operation did not complete before its timeout expired.
"
Class {
#name : #WDTimeout,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDTimeout class >> matchesErrorCode: errCode [
^ errCode = 'timeout'
]