summaryrefslogtreecommitdiff
path: root/Ivy/IvyException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy/IvyException.cs')
-rw-r--r--Ivy/IvyException.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Ivy/IvyException.cs b/Ivy/IvyException.cs
new file mode 100644
index 0000000..90a91b8
--- /dev/null
+++ b/Ivy/IvyException.cs
@@ -0,0 +1,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)
+ {
+ }
+ }
+} \ No newline at end of file