1 package org.xvsm.lookup.gnutella.exceptions;
2
3 /***
4 * Exception, which is thrown when an object cannot be found in the Gnutella network.
5 *
6 * @author Hannu-Daniel Goiss
7 */
8 public class NotFoundException extends Exception {
9
10 private static final long serialVersionUID = 6699607532050996200L;
11
12 public NotFoundException() {
13 super();
14 }
15
16 public NotFoundException(String message) {
17 super(message);
18 }
19
20 public NotFoundException(Throwable cause) {
21 super(cause);
22 }
23
24 public NotFoundException(String message, Throwable cause) {
25 super(message, cause);
26 }
27
28 }