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