You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 26, 2025. It is now read-only.
Is your feature request related to a problem? Please describe.
Right now, the project has only BrowserStorageDisabledException. Considering the localStorage is only 5mb in most cases, it's realistic that it can be fully filled up in some projects. Knowing that exactly this is the error would be useful, as this info can be passed along to the user.
Describe the solution you'd like
A QuotaExceededException thrown if the local storage is full. The localStorage implementation in JavaScript throws a QuotaExceededError, which can be passed along.
Describe alternatives you've considered
If BrowserStorageDisabledException handles this, it should be renamed.
Is your feature request related to a problem? Please describe.
Right now, the project has only BrowserStorageDisabledException. Considering the localStorage is only 5mb in most cases, it's realistic that it can be fully filled up in some projects. Knowing that exactly this is the error would be useful, as this info can be passed along to the user.
Describe the solution you'd like
A QuotaExceededException thrown if the local storage is full. The localStorage implementation in JavaScript throws a QuotaExceededError, which can be passed along.
Describe alternatives you've considered
If BrowserStorageDisabledException handles this, it should be renamed.
Additional context