7 lines
215 B
C#
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) { }
|
|
}
|
|
} |