Fault Domains — Aquilia Documentation
Comprehensive guide and documentation for Fault Domains in the Aquilia framework. View API reference, examples, and implementation patterns.
FAULTS / FAULT DOMAINS Fault Domains Fault Domains group errors by their originating subsystem. Each domain has default settings for severity and retries, making it easier to define handling rules across entire subsystems. Built-in Subsystem Domains Fault Domain Default Severity Default Retryable Subsystem Description FaultDomain.CONFIG Severity.FATAL False Workspace or application configuration loading errors FaultDomain.REGISTRY Severity.FATAL False AppManifest loading or dependency cycle validation errors FaultDomain.DI Severity.ERROR False Dependency injection dependency resolution errors FaultDomain.ROUTING Severity.ERROR False URL matching and compiled routing layout conflicts FaultDomain.FLOW Severity.ERROR False Pipeline execution flow and context errors FaultDomain.EFFECT Severity.ERROR True Effect acquisition or provider release exceptions FaultDomain.IO Severity.WARN True Local I/O, file reading, or network stream interrupts FaultDomain.SECURITY Severity.ERROR False Auth guards, CSRF token validation, or CORS blocks FaultDomain.SYSTEM Severity.FATAL False Critical process constraints or machine environment errors FaultDomain.MODEL Severity.ERROR False ORM Model schema matching and database queries FaultDomain.CACHE Severity.ERROR True Cache namespace read/write or backend client timeouts FaultDomain.STORAGE Severity.ERROR False Object storage bucket sync or driver exceptions FaultDomain.TASKS Severity.ERROR True Background task engine worker thread failures FaultDomain.TEMPLATE Severity.ERROR False HTML template compile or sandboxed rendering context errors FaultDomain.HTTP Severity.WARN False Outbound client HTTP request failures Fault Handlers Advanced Handlers )
Go to Homepage