KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > matuschek > http > cookie > CookieException


1 package net.matuschek.http.cookie;
2
3 /*********************************************
4     Copyright (c) 2001 by Daniel Matuschek
5 *********************************************/

6                                          
7 /**
8  * A generic exception for cookie problems.
9  *
10  * @author Daniel Matuschek
11  * @version $Id $
12  */

13 public class CookieException extends Exception JavaDoc {
14
15     private static final long serialVersionUID = 1858147178063720701L;
16
17     public CookieException(String JavaDoc message) {
18         super(message);
19     }
20
21 }
22
Popular Tags