From df7d7981b56a4560c95ea7e9b194080e93398ecf Mon Sep 17 00:00:00 2001 From: Matt Windsor Date: Mon, 21 Mar 2011 21:54:31 +0000 Subject: GREAT PACKAGE RESHUFFLE: Everything is now organised into frontend, backend and common (to frontend and backend) packages. Things may have been broken. Doc refresh. --- .../library/exceptions/EmptySearchException.java | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 src/uk/org/ury/library/exceptions/EmptySearchException.java (limited to 'src/uk/org/ury/library/exceptions') diff --git a/src/uk/org/ury/library/exceptions/EmptySearchException.java b/src/uk/org/ury/library/exceptions/EmptySearchException.java deleted file mode 100644 index 9b4691f..0000000 --- a/src/uk/org/ury/library/exceptions/EmptySearchException.java +++ /dev/null @@ -1,49 +0,0 @@ -/** - * - */ -package uk.org.ury.library.exceptions; - -/** - * Exception thrown when a library search is initiated - * in which the query string is null. - * - * Frontends should handle this nicely. Do NOT treat this - * as a fatal error! - * - * @author Matt Windsor - */ - -public class EmptySearchException extends Exception -{ - - /** - * Change this! ---v - */ - - private static final long serialVersionUID = -397479334359858162L; - - - /** - * Construct a new EmptySearchException with a - * default reason. - */ - - public - EmptySearchException () - { - super ("Query string was empty."); - } - - - /** - * Construct a new EmptySearchException. - * - * @param reason The explanation for the exception. - */ - - public - EmptySearchException (String reason) - { - super (reason); - } -} -- cgit v1.2.3