Salome HOME
Promote/Review/Validate functionality for author of the study is improved.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / exception / IncompatibleDataException.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.03.2013
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.exception; 
11
12 /**
13  * Exception thrown when data is incompatible for "Compare the studies" functionality.
14  * @author Maria KRUCHININA
15  *
16  */
17 public class IncompatibleDataException extends BusinessException {
18
19         /**
20          * Version id for serialization.
21          */
22         private static final long serialVersionUID = -4596111071538834057L;
23         
24         /**
25          * Create a IncompatibleDataException.
26          * 
27          * @param message
28          *            the error message.
29          */
30         public IncompatibleDataException(final String message) {
31                 super(message);
32         }
33 }