1 package org.sourceforge.vlibrary.user.exceptions; 2 3 import org.sourceforge.vlibrary.exceptions.LibraryException; 4 5 6 /** 7 * Book not found exception 8 * @version $Revision$ $Date$ 9 * 10 */ 11 public class BookNotFoundException extends LibraryException { 12 private static final long serialVersionUID = 0; 13 14 public BookNotFoundException() { 15 super(); 16 } 17 public BookNotFoundException(String msg) { 18 super(msg); 19 } 20 } 21 22