01: package net.wastl.webmail.exceptions;
02:
03: /**
04: * StylesheetNotFoundException.java
05: *
06: *
07: * Created: Thu May 4 15:37:15 2000
08: *
09: * @author Sebastian Schaffert
10: * @version
11: */
12:
13: public class StylesheetNotFoundException extends WebMailException {
14:
15: public StylesheetNotFoundException() {
16: super ();
17: }
18:
19: public StylesheetNotFoundException(String s) {
20: super (s);
21: }
22:
23: } // StylesheetNotFoundException
|