summaryrefslogtreecommitdiffstats
path: root/src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java
diff options
context:
space:
mode:
authorJosh Walters <josh@joshwalters.com>2011-12-14 02:35:57 +0100
committerJosh Walters <josh@joshwalters.com>2011-12-14 02:35:57 +0100
commitb6869036b7839b4540cee1114f44bc5c9b33d9c4 (patch)
tree8347cd87eb6b156685bf8c6e200c5fc984f07708 /src/com/joshwalters/bookcatalog/isbnlookup/NoBookFound.java
parent7dd58abb4878c3ff5a5c5cd41a1ee0d3ff2decd3 (diff)
downloadBookCatalog-b6869036b7839b4540cee1114f44bc5c9b33d9c4.tar.gz
BookCatalog-b6869036b7839b4540cee1114f44bc5c9b33d9c4.tar.xz
Initial commit of code.
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