Error code
UNEXPECTED
Unexpected error
Unexpected error
A code path threw an exception that wasn’t mapped to a typed AppException. Indicates a missed throw site that should be classified.
Common causes
- Untyped throw new Error(...) in business logic.
- Third-party library throwing an unrecognised error.
- Async path leaking a rejection.
What to do
Read the captured stack on errors.sellivo.io and replace the throw with a typed AppException subclass.
שגיאה בלתי צפויה
נתיב קוד זרק חריגה שלא מופתה ל־AppException ממוין. מצביע על נקודת זריקה שלא סווגה.
סיבות נפוצות
- throw new Error(...) לא ממוין.
- ספריית צד־ג' זורקת שגיאה לא מוכרת.
- נתיב async שדולף rejection.
פעולה מומלצת
קראו את ה־stack ב־errors.sellivo.io והחליפו את ה־throw ב־subclass של AppException.