Salome HOME
b8f63720aecb63fcb9db4f8f4148d3ef9249500a
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / kernel / MultiplyDefinedException.java
1 package org.splat.kernel;
2
3 import org.splat.exception.BusinessException;
4
5 /**
6  * Exception thrown when the property is multiply defined.
7  * @author Daniel Brunier-Coulin
8  * @copyright OPEN CASCADE 2012-2014
9  */
10
11 public class MultiplyDefinedException extends BusinessException {
12
13         /**
14          * Version id for serialization.
15          */
16         private static final long serialVersionUID = 3551033092059904168L;
17
18         /**
19          * Create a MultiplyDefinedException.  
20          */
21         public MultiplyDefinedException() {
22                 super();
23         }
24
25         /**
26          * Create a MultiplyDefinedException. 
27          * @param message the error message. 
28          */
29         public MultiplyDefinedException(final String message) {
30                 super(message);
31         }
32 }