| 533 | |
| 534 | |
| 535 | class PermissionNotFoundException(FeastError): |
| 536 | def __init__(self, name, project): |
| 537 | super().__init__(f"Permission {name} does not exist in project {project}") |
| 538 | |
| 539 | |
| 540 | class PermissionObjectNotFoundException(FeastObjectNotFoundException): |
no outgoing calls