diff options
-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 |