diff options
author | Mark Spruiell <mes@zeroc.com> | 2001-11-14 14:43:03 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2001-11-14 14:43:03 +0000 |
commit | 11d9db0d42f47308804c91d95a9185b5778581a4 (patch) | |
tree | 4b9cf7b2c7a421f4fd8f2dbcee4a2cbc4ee87a28 /java/src/IceInternal/NonRepeatable.java | |
parent | fixes (diff) | |
download | ice-11d9db0d42f47308804c91d95a9185b5778581a4.tar.bz2 ice-11d9db0d42f47308804c91d95a9185b5778581a4.tar.xz ice-11d9db0d42f47308804c91d95a9185b5778581a4.zip |
adding more files
Diffstat (limited to 'java/src/IceInternal/NonRepeatable.java')
-rw-r--r-- | java/src/IceInternal/NonRepeatable.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/src/IceInternal/NonRepeatable.java b/java/src/IceInternal/NonRepeatable.java new file mode 100644 index 00000000000..b7cc594142d --- /dev/null +++ b/java/src/IceInternal/NonRepeatable.java @@ -0,0 +1,28 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +package IceInternal; + +public class NonRepeatable extends Exception // TODO: Base class? +{ + public + NonRepeatable(Ice.LocalException ex) + { + _ex = ex; + } + + public Ice.LocalException + get() + { + return _ex; + } + + private Ice.LocalException _ex; +} |