TF-4268 Cache Sentry config and user for FCM background re-initialization

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2026-04-09 16:22:37 +07:00
committed by Dat H. Pham
parent cb5d43630a
commit eeaab49e93
20 changed files with 755 additions and 183 deletions
@@ -6,3 +6,17 @@ class NotFoundDataWithThisKeyException extends AppBaseException {
@override
String get exceptionName => 'NotFoundDataWithThisKeyException';
}
class NotFoundSentryConfigurationException extends AppBaseException {
const NotFoundSentryConfigurationException([super.message]);
@override
String get exceptionName => 'NotFoundSentryConfigurationException';
}
class NotFoundSentryUserException extends AppBaseException {
const NotFoundSentryUserException([super.message]);
@override
String get exceptionName => 'NotFoundSentryUserException';
}