mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-15 18:20:36 +00:00
* Adding graphql query to fetch latest helm release of specified type * Updating typescript version and js file * Fixing PR comments in release * Adding feature flag as environment variable in release * Changing feature flag name * Updating files as per latest changes in master after resolving merge conflicts * Removing non prod modules
16 lines
548 B
JavaScript
16 lines
548 B
JavaScript
export class GraphqlError extends Error {
|
|
constructor(request, response) {
|
|
const message = response.data.errors[0].message;
|
|
super(message);
|
|
Object.assign(this, response.data);
|
|
Object.assign(this, { headers: response.headers });
|
|
this.name = "GraphqlError";
|
|
this.request = request;
|
|
// Maintains proper stack trace (only available on V8)
|
|
/* istanbul ignore next */
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
}
|
|
}
|