20 lines
454 BLFS
C#
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) { }
|
|
}
|
|
}
|