]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/SPlat/src/org/splat/manox/XMLException.java
Salome HOME
PMD plugin is refreshed. Some code is modified to respect PMD rules. Ant build proced...
[tools/siman.git] / Workspace / SPlat / src / org / splat / manox / XMLException.java
1 package org.splat.manox;
2 /**
3  * 
4  * @author    Daniel Brunier-Coulin
5  * @copyright OPEN CASCADE 2012
6  */
7
8 public class XMLException extends Exception {
9
10     private static final long serialVersionUID = -4807111035943839090L;
11
12     public XMLException () {
13         super();
14     }
15     public XMLException (final String message) {
16       super(message);
17     }
18 }