aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/database/exceptions/QueryFailureException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/uk/org/ury/database/exceptions/QueryFailureException.java')
-rw-r--r--src/uk/org/ury/database/exceptions/QueryFailureException.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/uk/org/ury/database/exceptions/QueryFailureException.java b/src/uk/org/ury/database/exceptions/QueryFailureException.java
deleted file mode 100644
index 5293a7c..0000000
--- a/src/uk/org/ury/database/exceptions/QueryFailureException.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/**
- *
- */
-package uk.org.ury.database.exceptions;
-
-
-/**
- * Exception thrown when the database backend fails to execute
- * a query.
- *
- * @author Matt Windsor
- */
-
-public class QueryFailureException extends Exception
-{
- /**
- *
- */
- private static final long serialVersionUID = -7353531873142099828L;
-
-
-/**
- * Construct a new QueryFailureException with a
- * default reason.
- */
-
- public
- QueryFailureException ()
- {
- super ("Query failure.");
- }
-
-
- /**
- * Construct a new QueryFailureException.
- *
- * @param reason The explanation for the exception.
- */
-
- public
- QueryFailureException (String reason)
- {
- super (reason);
- }
-}