UNPKG

@atlaskit/build-utils

Version:

Collection of utilities to used during the release process of Atlaskit

10 lines (8 loc) 215 B
/** Error utils */ /* Allow us to handle validation errors specifically */ export class ValidationError extends Error { constructor(message: string) { super(message); this.name = 'ValidationError'; } }