View Javadoc

1   /*
2    * SerializationException.java
3    * 
4    * Created on Feb 17, 2004 at 2:08:02 AM
5    */
6   package yawn.io.serialization;
7   
8   import yawn.YawnException;
9   
10  /***
11   * Thrown when an exception occurs when serializing/de-serializing neural
12   * networks configuration.
13   * 
14   * $Id: SerializationException.java,v 1.4 2005/04/20 18:55:04 supermarti Exp $</p>
15   * 
16   * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara </a>
17   * @version $Revision: 1.4 $
18   */
19  public class SerializationException extends YawnException {
20  
21      /***
22       * 
23       */
24      private static final long serialVersionUID = 4050483413280370737L;
25  
26      public SerializationException() {
27          super();
28      }
29  
30      public SerializationException(String theMessage) {
31          super(theMessage);
32      }
33  
34      public SerializationException(Throwable theCause) {
35          super(theCause);
36      }
37  
38      public SerializationException(String theMessage, Throwable theCause) {
39          super(theMessage, theCause);
40      }
41  
42  }