diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-08-15 17:24:18 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-08-15 17:24:18 -0230 |
commit | 6ac641b9e5ac4dacadbaf8cd29c1edb08beb1609 (patch) | |
tree | b7d24c863f03b228fcfd0287afe78d0330cac572 /java/demo/Database/library/Library.ice | |
parent | remove junk file (diff) | |
download | ice-6ac641b9e5ac4dacadbaf8cd29c1edb08beb1609.tar.bz2 ice-6ac641b9e5ac4dacadbaf8cd29c1edb08beb1609.tar.xz ice-6ac641b9e5ac4dacadbaf8cd29c1edb08beb1609.zip |
remove QueryActiveException.
Diffstat (limited to 'java/demo/Database/library/Library.ice')
-rw-r--r-- | java/demo/Database/library/Library.ice | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/java/demo/Database/library/Library.ice b/java/demo/Database/library/Library.ice index ba4b5a9b7dc..6d2914de117 100644 --- a/java/demo/Database/library/Library.ice +++ b/java/demo/Database/library/Library.ice @@ -51,15 +51,6 @@ exception NoResultsException { }; -/** - * - * This exception is raised if a query is already active. - * - **/ -exception QueryActiveException -{ -}; - /** Forward declaration for the interface Book. */ interface Book; @@ -201,11 +192,9 @@ interface Library * @throws NoResultsException Raised if there are no results. * - * @throws QueryActiveException Raised if an existing query is active. - * **/ void queryByIsbn(string isbn, out BookDescription first, out BookQueryResult* result) - throws QueryActiveException, NoResultsException; + throws NoResultsException; /** * @@ -221,11 +210,9 @@ interface Library * @throws NoResultsException Raised if there are no results. * - * @throws QueryActiveException Raised if an existing query is active. - * **/ void queryByAuthor(string author, out BookDescription first, out BookQueryResult* result) - throws QueryActiveException, NoResultsException; + throws NoResultsException; /** * |