01: // (c) copyright 2006 by eXXcellent solutions, Ulm. Author: bschmid
02:
03: package org.wings.resource;
04:
05: import java.io.IOException;
06:
07: /**
08: * Exception thrown if a Resource could not be retrieved or
09: * found (i.e. missing) and should be indicated with a 404!
10: *
11: * @author Benjamin Schmid <B.Schmid@exxcellent.de>
12: */
13: public class ResourceNotFoundException extends IOException {
14:
15: /**
16: * Default c'tor for an exception if a resource could not be found.
17: * @param message A message describing the missing resource.
18: */
19: public ResourceNotFoundException(final String message) {
20: super(message);
21: }
22: }
|