UNPKG

@segment/analytics-core

Version:

This package represents core 'shared' functionality that is shared by analytics packages. This is not designed to be used directly, but internal to analytics-node and analytics-browser.

9 lines (7 loc) 172 B
export class ValidationError extends Error { field: string constructor(field: string, message: string) { super(`${field} ${message}`) this.field = field } }