using System; namespace PaySharp.Core.Exceptions { public class GatewayException : Exception { public GatewayException(string message) : base(message) { } } }