// Copyright (C) 2024 Intro-Skipper contributors // SPDX-License-Identifier: GPL-3.0-only. using System; namespace IntroSkipper.Data; /// /// 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) { } }