WebDriver/src/WebDriver/WDUnknownError.class.st

14 lines
288 B
Smalltalk

"
An unknown error occurred in the remote end while processing the command.
"
Class {
#name : #WDUnknownError,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDUnknownError class >> matchesErrorCode: errCode [
^ errCode = 'unknown error'
]