< Summary

Information
Class: TeleFlow.Framework.Application.TeleFlowConfigurationException
Assembly: TeleFlow.Framework.Core
File(s): /_/src/TeleFlow.Framework.Core/Application/TeleFlowConfigurationException.cs
Line coverage
50%
Covered lines: 2
Uncovered lines: 2
Coverable lines: 4
Total lines: 18
Line coverage: 50%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
.ctor(...)100%210%

File(s)

/_/src/TeleFlow.Framework.Core/Application/TeleFlowConfigurationException.cs

#LineLine coverage
 1namespace TeleFlow.Framework.Application;
 2
 3/// <summary>
 4/// Represents an invalid TeleFlow application setup detected before an update should be processed.
 5/// The runtime uses this exception for configuration and DI validation failures that users can fix in startup code.
 6/// </summary>
 7public sealed class TeleFlowConfigurationException : InvalidOperationException
 8{
 9    public TeleFlowConfigurationException(string message)
 810        : base(message)
 11    {
 812    }
 13
 14    public TeleFlowConfigurationException(string message, Exception innerException)
 015        : base(message, innerException)
 16    {
 017    }
 18}