diff options
author | fcolin | 2007-02-01 09:49:30 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:49:30 +0000 |
commit | e887a636115e2776dfad5c3a20d8623a00a7da3c (patch) | |
tree | 97003cb27560f7cd003f4b6ca9ca37219a3a5151 | |
parent | b45de0e87d5546e623110d7502faf33e2d23f001 (diff) | |
download | ivy-csharp-e887a636115e2776dfad5c3a20d8623a00a7da3c.zip ivy-csharp-e887a636115e2776dfad5c3a20d8623a00a7da3c.tar.gz ivy-csharp-e887a636115e2776dfad5c3a20d8623a00a7da3c.tar.bz2 ivy-csharp-e887a636115e2776dfad5c3a20d8623a00a7da3c.tar.xz |
Utilisateur : Fcolin Date : 19/05/03 Heure : 15:31 Créé Commentaire: (vss 1)
-rw-r--r-- | CSharp/Ivy/Ivy/IvyException.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/CSharp/Ivy/Ivy/IvyException.cs b/CSharp/Ivy/Ivy/IvyException.cs new file mode 100644 index 0000000..bc1bbf4 --- /dev/null +++ b/CSharp/Ivy/Ivy/IvyException.cs @@ -0,0 +1,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)
+ {
+ }
+ }
+}
\ No newline at end of file |