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

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

Nouveau projet

File size: 1.1 KB
Line 
1/*
2 * Created on 15 févr. 2005
3 *
4 * TODO To change the template for this generated file go to
5 * Window - Preferences - Java - Code Style - Code Templates
6 */
7package com.medias;
8
9/**
10 * @author combaz
11 *
12 * TODO To change the template for this generated type comment go to
13 * Window - Preferences - Java - Code Style - Code Templates
14 */
15public class ConversionException extends Exception {
16        /**
17     *
18     */
19    private static final long serialVersionUID = 1L;
20    public static String ERROR_fromXml = "L'element passe en parametre ne correspond pas a un objet ";
21
22        /**
23         *
24         */
25        public ConversionException() {
26                super();
27                // TODO Auto-generated constructor stub
28        }
29
30        /**
31         * @param message
32         */
33        public ConversionException(String message) {
34                super(message);
35                // TODO Auto-generated constructor stub
36        }
37
38        /**
39         * @param cause
40         */
41        public ConversionException(Throwable cause) {
42                super(cause);
43                // TODO Auto-generated constructor stub
44        }
45
46        /**
47         * @param message
48         * @param cause
49         */
50        public ConversionException(String message, Throwable cause) {
51                super(message, cause);
52                // TODO Auto-generated constructor stub
53        }
54
55}
Note: See TracBrowser for help on using the repository browser.