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