CircularDependencyException constructor

CircularDependencyException(
  1. String message, {
  2. dynamic details,
})

Implementation

CircularDependencyException(
  super.message, {
  super.details,
}) : super(
        statusCode: 500,
        title: 'Circular Dependency Error',
        type: 'circular_dependency_error',
      );