< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Langfuse.LangfuseException
Assembly: NexusLabs.Needlr.AgentFramework.Langfuse
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseException.cs
Line coverage
50%
Covered lines: 2
Uncovered lines: 2
Coverable lines: 4
Total lines: 26
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)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseException.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Langfuse;
 2
 3/// <summary>
 4/// The exception thrown when a request to the Langfuse API fails.
 5/// </summary>
 6public sealed class LangfuseException : Exception
 7{
 8    /// <summary>
 9    /// Initializes a new instance of the <see cref="LangfuseException"/> class.
 10    /// </summary>
 11    /// <param name="message">The error message.</param>
 12    public LangfuseException(string message)
 713        : base(message)
 14    {
 715    }
 16
 17    /// <summary>
 18    /// Initializes a new instance of the <see cref="LangfuseException"/> class.
 19    /// </summary>
 20    /// <param name="message">The error message.</param>
 21    /// <param name="innerException">The underlying exception.</param>
 22    public LangfuseException(string message, Exception innerException)
 023        : base(message, innerException)
 24    {
 025    }
 26}