intro-skipper/IntroSkipper/Data/FingerprintException.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2024-10-25 14:15:12 -04:00
// Copyright (C) 2024 Intro-Skipper Contributors <intro-skipper.org>
// SPDX-License-Identifier: GNU General Public License v3.0 only.
2022-05-01 00:33:22 -05:00
using System;
namespace 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
{
}
}