vgquotes/Src/VideoGameQuotes.Api/ApiException.cs
tmont 14ca315213 * dto madness
* api madness
* browse page is beginning to not be empty
* NetVotes -> Score
2011-02-16 02:48:11 +00:00

7 lines
215 B
C#

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