01: package net.matuschek.http.cookie;
02:
03: /*********************************************
04: Copyright (c) 2001 by Daniel Matuschek
05: *********************************************/
06:
07: /**
08: * A generic exception for cookie problems.
09: *
10: * @author Daniel Matuschek
11: * @version $Id $
12: */
13: public class CookieException extends Exception {
14:
15: private static final long serialVersionUID = 1858147178063720701L;
16:
17: public CookieException(String message) {
18: super(message);
19: }
20:
21: }
|