mirror of
https://github.com/appium/appium.git
synced 2026-04-24 04:18:49 -05:00
cce27fcf88
- Use `util.pluralize()` from `@appium/support` instead of `pluralize` directly - Write some more docstrings
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
/**
|
|
* A custom error class. This exists so we can use `instanceof` to differentiate between "expected"
|
|
* exceptions and unexpected ones.
|
|
* @module
|
|
*/
|
|
|
|
export class DocutilsError extends Error {}
|