Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / kernel / MismatchException.java
1 package org.splat.kernel;
2
3 /**
4  * 
5  * @author Daniel Brunier-Coulin
6  * @copyright OPEN CASCADE 2012
7  */
8
9 public class MismatchException extends Exception {
10
11         private static final long serialVersionUID = 366699682058153984L;
12
13         public MismatchException() {
14                 super();
15         }
16
17         public MismatchException(final String message) {
18                 super(message);
19         }
20 }