KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > util > CloneException


1 package org.jgap.util;
2
3 /**
4  * Exception that occurs during cloning an object.
5  *
6  *
7  * @author Klaus Meffert
8  * @since 3.1
9  */

10 public class CloneException
11     extends RuntimeException JavaDoc {
12   /** String containing the CVS revision. Read out via reflection!*/
13   final static String JavaDoc CVS_REVISION = "$Revision: 1.1 $";
14
15   public CloneException() {
16     super();
17   }
18
19   public CloneException(Throwable JavaDoc a_throwable) {
20     super(a_throwable);
21   }
22
23   public CloneException(String JavaDoc a_message) {
24     super(a_message);
25   }
26 }
27
Popular Tags