Mercurial > pub > ImplabNet
diff Implab/TransientPromiseException.cs @ 72:d67b95eddaf4 v2
promises refactoring
author | cin |
---|---|
date | Thu, 04 Sep 2014 18:47:12 +0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Implab/TransientPromiseException.cs Thu Sep 04 18:47:12 2014 +0400 @@ -0,0 +1,33 @@ +using System; + +namespace Implab { + + [Serializable] + public class TransientPromiseException : Exception { + /// <summary> + /// Initializes a new instance of the <see cref="PromiseFailedException"/> class. + /// </summary> + /// <param name="inner">The exception that is the cause of the current exception.</param> + public TransientPromiseException(Exception inner) : base("The preceding promise has failed", inner) { + } + + /// <summary> + /// Initializes a new instance of the <see cref="PromiseFailedException"/> class + /// </summary> + /// <param name="message">A <see cref="T:System.String"/> that describes the exception. </param> + /// <param name="inner">The exception that is the cause of the current exception. </param> + public TransientPromiseException(string message, Exception inner) + : base(message, inner) { + } + + /// <summary> + /// Initializes a new instance of the <see cref="PromiseFailedException"/> class + /// </summary> + /// <param name="context">The contextual information about the source or destination.</param> + /// <param name="info">The object that holds the serialized object data.</param> + protected TransientPromiseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) + : base(info, context) { + } + } +} +