summaryrefslogtreecommitdiffstats
path: root/src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java')
-rw-r--r--src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java b/src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java
new file mode 100644
index 0000000..1c909e0
--- /dev/null
+++ b/src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java
@@ -0,0 +1,34 @@
+/*
+ * Book Catalog - Catalog your book collection.
+ *
+ * Copyright (C) 2009 Joshua Walters
+ * URL: http://joshwalters.com
+ *
+ * This file is part of Book Catalog.
+ *
+ * Book Catalog is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Book Catalog is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Book Catalog. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package com.joshwalters.bookcatalog.isbnlookup;
+
+/**
+ * Thrown if the book is not found.
+ *
+ * @author Josh Walters
+ */
+public class NoBookFound extends Exception {
+
+ /** The serial ID */
+ private static final long serialVersionUID = -7276230896519983235L;
+} \ No newline at end of file