diff options
Diffstat (limited to 'java/src/IceInternal/UserExceptionFactory.java')
-rw-r--r-- | java/src/IceInternal/UserExceptionFactory.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/java/src/IceInternal/UserExceptionFactory.java b/java/src/IceInternal/UserExceptionFactory.java new file mode 100644 index 00000000000..b66574b1084 --- /dev/null +++ b/java/src/IceInternal/UserExceptionFactory.java @@ -0,0 +1,23 @@ +// ********************************************************************** +// +// Copyright (c) 2003 +// ZeroC, Inc. +// Billerica, MA, USA +// +// All Rights Reserved. +// +// Ice is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License version 2 as published by +// the Free Software Foundation. +// +// ********************************************************************** + +package IceInternal; + +public interface UserExceptionFactory +{ + void createAndThrow() + throws Ice.UserException; + + void destroy(); +} |