< Summary - Jellyfin

Information
Class: MediaBrowser.Common.FfmpegException
Assembly: MediaBrowser.Common
File(s): /srv/git/jellyfin/MediaBrowser.Common/FfmpegException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 39
Line coverage: 0%
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

Coverage history

Coverage history 0 25 50 75 100

Metrics

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

File(s)

/srv/git/jellyfin/MediaBrowser.Common/FfmpegException.cs

#LineLine coverage
 1using System;
 2
 3namespace MediaBrowser.Common
 4{
 5    /// <summary>
 6    /// Represents errors that occur during interaction with FFmpeg.
 7    /// </summary>
 8    public class FfmpegException : Exception
 9    {
 10        /// <summary>
 11        /// Initializes a new instance of the <see cref="FfmpegException"/> class.
 12        /// </summary>
 013        public FfmpegException()
 14        {
 015        }
 16
 17        /// <summary>
 18        /// Initializes a new instance of the <see cref="FfmpegException"/> class with a specified error message.
 19        /// </summary>
 20        /// <param name="message">The message that describes the error.</param>
 021        public FfmpegException(string message) : base(message)
 22        {
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the <see cref="FfmpegException"/> class with a specified error message and a
 27        /// reference to the inner exception that is the cause of this exception.
 28        /// </summary>
 29        /// <param name="message">The error message that explains the reason for the exception.</param>
 30        /// <param name="innerException">
 31        /// The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if
 32        /// no inner exception is specified.
 33        /// </param>
 34        public FfmpegException(string message, Exception innerException)
 035            : base(message, innerException)
 36        {
 037        }
 38    }
 39}