KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > net > MaxThreadReachedException


1 package org.sapia.ubik.net;
2
3
4 /**
5  * @author Yanick Duchesne
6  * <dl>
7  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
8  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
9  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
10  * </dl>
11  */

12 public class MaxThreadReachedException extends Exception JavaDoc {
13   /**
14    * Constructor for MaxThreadReachedException.
15    * @param arg0
16    */

17   public MaxThreadReachedException(String JavaDoc arg0) {
18     super(arg0);
19   }
20
21   /**
22    * Constructor for MaxThreadReachedException.
23    * @param arg0
24    * @param arg1
25    */

26   public MaxThreadReachedException(String JavaDoc arg0, Throwable JavaDoc arg1) {
27     super(arg0, arg1);
28   }
29
30   /**
31    * Constructor for MaxThreadReachedException.
32    * @param arg0
33    */

34   public MaxThreadReachedException(Throwable JavaDoc arg0) {
35     super(arg0);
36   }
37
38   /**
39    * Constructor for MaxThreadReachedException.
40    */

41   public MaxThreadReachedException() {
42     super();
43   }
44 }
45
Popular Tags