2022-05-01 00:33:22 -05:00
|
|
|
using System;
|
|
|
|
|
2024-10-19 23:50:41 +02:00
|
|
|
namespace IntroSkipper.Data;
|
2022-05-01 00:33:22 -05:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Exception raised when an error is encountered analyzing audio.
|
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
public class FingerprintException : Exception
|
|
|
|
{
|
2022-05-01 00:33:22 -05:00
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
|
|
|
public FingerprintException()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// <param name="message">Exception message.</param>
|
|
|
|
public FingerprintException(string message) : base(message)
|
2022-05-01 00:33:22 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Initializes a new instance of the <see cref="FingerprintException"/> class.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// <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
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|