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