Files
appium/packages/docutils/lib/error.ts
Christopher Hiller cce27fcf88 chore(docutils): review updates
- Use `util.pluralize()` from `@appium/support` instead of `pluralize` directly
- Write some more docstrings
2023-03-03 11:36:00 -08:00

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 {}