UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

23 lines (21 loc) 443 B
/** * Extends standard "Error" object to support adding extra properties. */ export class ErrorExtended extends Error { /** * Known extended source names. */ static sources = { getNoCache: 'getNoCache', aadSso: 'aadSso' }; /** * The extended error source name. */ extendedSource; /** * The extended content. */ extended; } //# sourceMappingURL=error-extended.js.map