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