source: ether_statistics/common/implementation/com/medias/xml/ElementNotFoundException.java @ 569

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

Nouveau projet

File size: 878 bytes
Line 
1package com.medias.xml;
2
3/**
4 * @author combaz
5 *
6 * Created on 23 févr. 2005
7 */
8public class ElementNotFoundException extends Exception {
9       
10        /**
11     *
12     */
13    private static final long serialVersionUID = 1L;
14    /**
15         *
16         */
17        public ElementNotFoundException() {
18                super("Element not found in the XML file tree");
19                // TODO Auto-generated constructor stub
20        }
21        /**
22         * @param message
23         */
24        public ElementNotFoundException(String message) {
25                super(message);
26                // TODO Auto-generated constructor stub
27        }
28        /**
29         * @param message
30         * @param cause
31         */
32        public ElementNotFoundException(String message, Throwable cause) {
33                super(message, cause);
34                // TODO Auto-generated constructor stub
35        }
36        /**
37         * @param cause
38         */
39        public ElementNotFoundException(Throwable cause) {
40                super("Element not found in the XML file tree",cause);
41                // TODO Auto-generated constructor stub
42        }
43}
Note: See TracBrowser for help on using the repository browser.