vgquotes/Src/VideoGameQuotes.Api/ApiException.cs

7 lines
215 B
C#
Raw Normal View History

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