summaryrefslogtreecommitdiff
path: root/netfs/ice/exceptions.ice
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/ice/exceptions.ice')
-rw-r--r--netfs/ice/exceptions.ice18
1 files changed, 18 insertions, 0 deletions
diff --git a/netfs/ice/exceptions.ice b/netfs/ice/exceptions.ice
new file mode 100644
index 0000000..9d5b970
--- /dev/null
+++ b/netfs/ice/exceptions.ice
@@ -0,0 +1,18 @@
+#ifndef _EXCEPTIONS
+#define _EXCEPTIONS
+
+module NetFS {
+ // Exceptions
+ exception SystemError {
+ int syserrno;
+ };
+
+ exception AuthError {
+ };
+
+ exception ConfigError {
+ };
+};
+
+#endif
+