1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-04-19 04:03:13 +00:00

chore(merge): Merge branch 'master' into service-pack-with-file-resource

This commit is contained in:
Saad Jutt
2021-06-10 16:55:35 +05:00
20 changed files with 2524 additions and 15861 deletions

View File

@@ -0,0 +1,9 @@
export class SAS9AuthError extends Error {
constructor() {
super(
'The credentials you provided cannot be authenticated. Please provide a valid set of credentials.'
)
this.name = 'AuthorizeError'
Object.setPrototypeOf(this, SAS9AuthError.prototype)
}
}