KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > util > url > URLUtilsException


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: URLUtilsException.java 1006 2006-08-03 11:39:16Z benoitf $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.easybeans.util.url;
27
28 /**
29  * The class URKUtilsException indicates conditions that a reasonable
30  * application might want to catch.
31  * @author Florent Benoit
32  */

33 public class URLUtilsException extends Exception JavaDoc {
34
35     /**
36      * Uid of serializable class.
37      */

38     private static final long serialVersionUID = -6516098191414053742L;
39
40     /**
41      * Constructs a new FileUtilsException with no detail message.
42      */

43     public URLUtilsException() {
44         super();
45     }
46
47     /**
48      * Constructs a new FileUtilsException with the specified message.
49      * @param message the detail message.
50      */

51     public URLUtilsException(final String JavaDoc message) {
52         super(message);
53     }
54
55     /**
56      * Constructs a new FileUtilsException with the specified message and
57      * throwable.
58      * @param message the detail message.
59      * @param t the original cause
60      */

61     public URLUtilsException(final String JavaDoc message, final Throwable JavaDoc t) {
62         super(message, t);
63     }
64 }
65
Popular Tags