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