using System;
namespace ConfusedPolarBear.Plugin.IntroSkipper;
///
/// Exception raised when an error is encountered analyzing audio.
///
public class FingerprintException : Exception
{
///
/// Initializes a new instance of the class.
///
public FingerprintException()
{
}
///
/// Initializes a new instance of the class.
///
/// Exception message.
public FingerprintException(string message) : base(message)
{
}
///
/// Initializes a new instance of the class.
///
/// Exception message.
/// Inner exception.
public FingerprintException(string message, Exception inner) : base(message, inner)
{
}
}