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