blob: bc1bbf4d2652f9e6324fac1edeb1f773480cfe51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace IvyBus
{
using System;
/// <summary> signals that an unrecoverrable Ivy exception has occured.
/// *
/// </summary>
/// <author> François-Régis Colin
/// </author>
/// <author> <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
///
/// </author>
public class IvyException:System.Exception
{
public IvyException(System.String s):base(s)
{
}
}
}
|