/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/libs/editor/src/utils/errors.js
12 строк
362 B
Raul Martin
fix: FIT-630: Apply sentry_skip pattern to configuration errors in ed… (#8280)
27 авг 2025, 22:38
Не верифицирован
27 авг 2025, 22:38
0c3d05b
Код
Авторство
О чём код?
/** * Custom error class for configuration errors that should not be sent to Sentry * Used for user/configuration issues rather than code bugs */ export class ConfigurationError extends Error { constructor(message) { super(message); this.name = "ConfigurationError"; // Mark this error to be skipped by Sentry this.sentry_skip = true; } }