diff options
Diffstat (limited to 'cpp/test/Ice/library/Test.ice')
-rw-r--r-- | cpp/test/Ice/library/Test.ice | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cpp/test/Ice/library/Test.ice b/cpp/test/Ice/library/Test.ice new file mode 100644 index 00000000000..1fbee615b42 --- /dev/null +++ b/cpp/test/Ice/library/Test.ice @@ -0,0 +1,25 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#pragma once + +module Test +{ + +exception UserError +{ + string message; +}; + +interface MyInterface +{ + void op(bool throwIt) throws UserError; +}; + +}; |