summaryrefslogtreecommitdiff
path: root/netfs/ice/exceptions.ice
blob: 9d5b97000f0ee9e6005cb24f5b22c082a1ce7d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _EXCEPTIONS
#define _EXCEPTIONS

module NetFS {
	// Exceptions
	exception SystemError {
		int syserrno;
	};

	exception AuthError {
	};

	exception ConfigError {
	};
};

#endif