blob: 2bdf066ff1f62e5759b76ac4ebfd7f900ffdd063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/// François-Régis Colin
/// http://www.tls.cena.fr/products/ivy/
/// *
/// (C) CENA
/// *
namespace IvyBus
{
using System;
using System.Runtime.Serialization;
/// <summary> signals that an unrecoverrable Ivy exception has occured.
/// </summary>
[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)
{
}
}
}
|