mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
19 lines
449 B
TypeScript
19 lines
449 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class WebhookAuthorizationError extends ApplicationError {
|
|
constructor(
|
|
readonly responseCode: number,
|
|
message?: string,
|
|
) {
|
|
if (message === undefined) {
|
|
message = 'Authorization problem!';
|
|
if (responseCode === 401) {
|
|
message = 'Authorization is required!';
|
|
} else if (responseCode === 403) {
|
|
message = 'Authorization data is wrong!';
|
|
}
|
|
}
|
|
super(message);
|
|
}
|
|
}
|