backend/pkg/notification/domain/error.go

15 lines
317 B
Go
Raw Normal View History

2025-10-02 16:16:33 +00:00
package domain
2025-10-02 16:36:34 +00:00
import "backend/pkg/library/errs"
2025-10-02 16:16:33 +00:00
2025-10-02 16:36:34 +00:00
// Notification Error Codes
2025-10-02 16:16:33 +00:00
const (
2025-10-02 16:36:34 +00:00
NotificationErrorCode errs.ErrorCode = 1 + iota
2025-10-02 16:16:33 +00:00
FailedToSendEmailErrorCode
FailedToSendSMSErrorCode
2025-10-02 16:36:34 +00:00
FailedToGetTemplateErrorCode
2025-10-22 13:40:31 +00:00
FailedToRenderTemplateErrorCode
2025-10-02 16:36:34 +00:00
FailedToSaveHistoryErrorCode
FailedToRetryDeliveryErrorCode
2025-10-02 16:16:33 +00:00
)