Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 391 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 391 Bytes

meteor-error

Port of the Meteor.Error class from Meteor.

Usage

import * as Meteor from '@share911/meteor-error'

throw new Meteor.Error(500, 'Internal server error')

or

import { Error as MeteorError } from '@share911/meteor-error'

throw new MeteorError(500, 'Internal server error')

Full documentation