Files
2024-09-22 21:45:37 +02:00

20 lines
454 BLFS
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RSG.Exceptions
{
/// <summary>
/// Base class for promise exceptions.
/// </summary>
public class PromiseException : Exception
{
public PromiseException() { }
public PromiseException(string message) : base(message) { }
public PromiseException(string message, Exception inner) : base(message, inner) { }
}
}