Handles.pipelineExceptions constructor

  1. @Deprecated('Use @PipelineExceptionHandler instead')
const Handles.pipelineExceptions({
  1. String? pipeline,
})

Constructor for pipeline exception handler annotations.

The optional pipeline name identifies the pipeline the exception handler is for. If it is not provided, the exception handler is for the default pipeline.

Note: page not found exceptions are not processed by the pipeline exception handlers, but by the server exception handlers. You should have a @Handles.exceptions() annotation before annotating additional exception handlers with this pipeline exception annotation.

Implementation

@Deprecated('Use @PipelineExceptionHandler instead')
const Handles.pipelineExceptions({String? pipeline})
    : pipeline = pipeline ?? ServerPipeline.defaultName,
      httpMethod = null,
      pattern = null,
      priority = null;