KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > myvietnam > mvncore > exception > ImportException


1 /*
2  * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/exception/ImportException.java,v 1.12 2006/04/15 02:59:19 minhnn Exp $
3  * $Author: minhnn $
4  * $Revision: 1.12 $
5  * $Date: 2006/04/15 02:59:19 $
6  *
7  * ====================================================================
8  *
9  * Copyright (C) 2002-2006 by MyVietnam.net
10  *
11  * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12  * MUST remain intact in the scripts and source code.
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Lesser General Public
16  * License as published by the Free Software Foundation; either
17  * version 2.1 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  *
28  * Correspondence and Marketing Questions can be sent to:
29  * info at MyVietnam net
30  *
31  * @author: Igor Manic
32  */

33 package net.myvietnam.mvncore.exception;
34
35 /**
36  * @author Igor Manic
37  * @version $Revision: 1.12 $, $Date: 2006/04/15 02:59:19 $
38  * <br/>
39  * <code>ImportException</code> represents the error that could be raised during
40  * the database import process. This class encapsulates detailed message that
41  * describes the error in user-friendly language, and the root exception that
42  * caused the import to stop.
43  */

44 public class ImportException extends Exception JavaDoc {
45
46     private Exception JavaDoc exception;
47
48     public ImportException() {
49         super();
50         this.exception = null;
51     }
52
53     public ImportException(String JavaDoc message) {
54         super(message);
55         this.exception = null;
56     }
57
58     public ImportException(Exception JavaDoc e) {
59         super();
60         this.exception = e;
61     }
62
63     public ImportException(String JavaDoc message, Exception JavaDoc e) {
64         super(message);
65         this.exception = e;
66     }
67
68     public String JavaDoc getMessage() {
69         String JavaDoc message = super.getMessage();
70
71         if (exception != null) {
72             return message + " Detail: " + exception.getMessage();
73         }
74         return message;
75     }
76
77     public Exception JavaDoc getException() {
78         return exception;
79     }
80
81     public String JavaDoc toString() {
82         if (exception != null) {
83             return exception.toString();
84         }
85         return super.toString();
86     }
87
88 }
89
Popular Tags