using System; using System.Collections.Generic; using System.Linq; using System.Text; 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) { } } }