UNPKG

alexa-sdk

Version:
12 lines (10 loc) 292 B
'use strict'; class ServiceError extends Error { constructor(statusCode, message) { super(message); this.name = 'ServiceError'; this.statusCode = statusCode; Error.captureStackTrace(this, ServiceError); } } module.exports.ServiceError = ServiceError;