diff --git a/packages/backend/src/error.ts b/packages/backend/src/error.ts index 865d276496..000c4862fc 100644 --- a/packages/backend/src/error.ts +++ b/packages/backend/src/error.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: MomentQYC and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + export function ErrorHandling(message: string): Error { const error = new Error(message); if (process.env.NODE_ENV === 'production') {