vgquotes/Src/VideoGameQuotes.Api/Search/SearchIndexException.cs

10 lines
342 B
C#
Raw Normal View History

using System;
namespace VideoGameQuotes.Api.Search {
/// <summary>
/// Raised when an error occurs while reading/writing a search index
/// </summary>
public class SearchIndexException : Exception {
public SearchIndexException(string message = null, Exception innerException = null) : base(message, innerException) { }
}
}