/opt/cloudlinux/venv/lib/python3.11/site-packages/clcagefslib
NameSizeModeActions
selector/-0755rm
webisolation/-0755rm
__pycache__/-0755rm
cli.py36650644editdlrm
const.py9360644editdlrm
domain.py345830755editdlrm
exceptions.py4020644editdlrm
fs.py10200644editdlrm
io.py53850644editdlrm
__init__.py1800644editdlrm
Edit: /opt/cloudlinux/venv/lib/python3.11/site-packages/clcagefslib/exceptions.py (402B)
# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2024 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT class UserNotFoundError(Exception): """Raised when a user is not found in the system.""" def __init__(self, username: str): self.username = username super().__init__(f'user {username} not found')