using System; namespace VideoGameQuotes.Api { public class ApiException : Exception { public ApiException(string message = null, Exception innerException = null) : base(message, innerException) { } } }