Add vault locked flag and enforce access checks

This commit is contained in:
thePR0M3TH3AN
2025-08-12 08:48:19 -04:00
parent b0e4ab9bc6
commit 19577163cf
3 changed files with 82 additions and 9 deletions

4
src/seedpass/errors.py Normal file
View File

@@ -0,0 +1,4 @@
class VaultLockedError(Exception):
"""Raised when an operation requires an unlocked vault."""
pass