Salome HOME
Update copyrights 2014.
[tools/siman.git] / Workspace / Siman / src / org / splat / launcher / ConfigurationException.java
1 /*****************************************************************************
2  * Company         OPEN CASCADE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   02.12.2012
6  * @author         $Author$
7  * @version        $Revision$
8  * @copyright      OPEN CASCADE 2012-2014
9  *****************************************************************************/
10
11 package org.splat.launcher;
12
13 /**
14  * Exception thrown when configuration problem appears during an executable module launching.
15  * 
16  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
17  */
18 public class ConfigurationException extends Exception {
19
20         /**
21          * Constructs a configuration exception with its reason description.
22          * 
23          * @param message
24          *            error message
25          */
26         public ConfigurationException(final String message) {
27                 super(message);
28         }
29
30         /**
31          * Serialization version id.
32          */
33         private static final long serialVersionUID = -8886811002435115163L;
34
35 }