using System; namespace RSG.Exceptions { /// /// Base class for promise exceptions. /// public class PromiseException : Exception { public PromiseException() { } public PromiseException(string message) : base(message) { } public PromiseException(string message, Exception inner) : base(message, inner) { } } }