Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: feynman/framework/simulation/MarshallingException.java


1   /*
2    * $Header: /cvsroot/feynman/src/feynman/framework/simulation/MarshallingException.java,v 1.1.1.1 2002/11/12 02:25:42 wesley_bailey Exp $
3    * $Revision: 1.1.1.1 $
4    * $Date: 2002/11/12 02:25:42 $
5    * $Copyright: Copyright (C) 2002 Path Integral Software $
6    */
7   package feynman.framework.simulation;
8   
9   /**
10   * General exception that can occurr while marshalling and 
11   * unmarshalling the simulation object.
12   *
13   * @author Wes Bailey
14   * @version $Revision: 1.1.1.1 $ $Date: 2002/11/12 02:25:42 $
15   */
16  public class MarshallingException extends Exception {
17    
18    // Provide different usages.
19    public MarshallingException () {
20      super();
21    }
22    
23    public MarshallingException(String message) {
24      super(message);
25    }
26    
27  }