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