/// François-Régis Colin /// http://www.tls.cena.fr/products/ivy/ /// * /// (C) CENA /// * namespace IvyBus { using System; using System.Runtime.Serialization; /// signals that an unrecoverrable Ivy exception has occured. /// [Serializable] public class IvyException : System.Exception { public IvyException() : base() { } protected IvyException(SerializationInfo info, StreamingContext context) : base(info, context) { } public IvyException(string message, Exception exp) : base(message,exp) { } public IvyException(string message) : base(message) { } } }