mirror of
https://github.com/appium/appium.git
synced 2026-02-21 18:59:08 -06:00
- 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 {}
|