Salome HOME
Copyrights update 2015.
[tools/siman.git] / kernel / MismatchException.java
1 package org.splat.kernel;
2 /**
3  * 
4  * @author    Daniel Brunier-Coulin
5  * @copyright OPEN CASCADE 2012
6  */
7
8 public class MismatchException extends Exception {
9
10     private static final long serialVersionUID = 366699682058153984L;
11
12     public MismatchException () {
13     }
14     public MismatchException (String message) {
15       super(message);
16     }
17 }