WebDriver/src/WebDriver/WDUnsupportedOperation.clas...

14 lines
335 B
Smalltalk

"
Indicates that a command that should have executed properly cannot be supported for some reason.
"
Class {
#name : #WDUnsupportedOperation,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDUnsupportedOperation class >> matchesErrorCode: errCode [
^ errCode = 'unsupported operation'
]