34 lines
970 B
C#
Raw Normal View History

2022-05-01 00:33:22 -05:00
using System;
2024-08-31 18:56:48 +02:00
namespace ConfusedPolarBear.Plugin.IntroSkipper.Data;
2022-05-01 00:33:22 -05:00
/// <summary>
/// Exception raised when an error is encountered analyzing audio.
/// </summary>
public class FingerprintException : Exception
{
2022-05-01 00:33:22 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
2022-05-01 00:33:22 -05:00
/// </summary>
public FingerprintException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
2022-05-01 00:33:22 -05:00
/// </summary>
/// <param name="message">Exception message.</param>
public FingerprintException(string message) : base(message)
2022-05-01 00:33:22 -05:00
{
}
/// <summary>
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
2022-05-01 00:33:22 -05:00
/// </summary>
/// <param name="message">Exception message.</param>
/// <param name="inner">Inner exception.</param>
public FingerprintException(string message, Exception inner) : base(message, inner)
2022-05-01 00:33:22 -05:00
{
}
}