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

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

BO insertion données _ insertion code medias package insertion

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