source: ether_megapoli/trunk/service/implementation/com/medias/integration/exceptions/XMLException.java @ 488

Last change on this file since 488 was 488, checked in by vmipsl, 12 years ago

BO insertion données _ ajout code medias
clean

  • Property svn:executable set to *
File size: 544 bytes
Line 
1/*
2 * Created on 23 Janvier. 2007
3 */
4package com.medias.integration.exceptions;
5
6/**
7 * @author
8 *
9 * Exception XML
10 */
11public class XMLException
12        extends Exception {
13    /**
14     * Construit une XMLException.
15     */
16    public XMLException( Exception e ) {
17        super(e);
18    }
19
20    /**
21     * Construit une XMLException.
22     * @param message Message de l'exception.
23     */
24    public XMLException( String message ) {
25        super(message);
26    }
27
28    /**
29     *
30     */
31    private static final long serialVersionUID = 1L;
32}
Note: See TracBrowser for help on using the repository browser.