ConditionalEvaluationException constructor

ConditionalEvaluationException(
  1. Type type,
  2. String conditionType,
  3. String message
)

Implementation

ConditionalEvaluationException(this.type, this.conditionType, String message)
    : super(
        'Failed to evaluate condition \'$conditionType\' for bean \'$type\': $message',
      );