module Services::Application

Application

Application services orchestrate use cases: they call infrastructure adapters and domain logic, then return results to the presentation layer.

Errors

Application-layer errors isolate the presentation layer from infrastructure details (Dependency Inversion). Controllers rescue these instead of adapter errors directly.

Contents