/
seafteam
/
seaf-archtool-core
Обзор
Документация
Войти
/
seafteam
/
seaf-archtool-core
Код
Запросы
10
Задачи
Пакеты
2
Релизы
21
Аналитика
java-back
src/backend/helpers/httpError.mjs
28 строк
860 B
Alexandr Anenburg
Запрос на слияние 'feature/ERA-2266-absolute-path-save-in-portal' (
#526
) из feature/ERA-2266-absolute-path-save-in-portal в dev
15 апр 2026, 09:38
Верифицирован
15 апр 2026, 09:38
78d213b
Код
Авторство
О чём код?
/* Copyright (C) 2026 Sber Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Maintainers: Alexandr Anenburg <anenburg.alexandr@mail.ru>, Sber Contributors: Alexandr Anenburg <anenburg.alexandr@mail.ru>, Sber - 2026 */ export class HttpError extends Error { constructor(message, status) { super(message); this.status = status; } }