comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/TechnicalException.java @ 129:110e3ac1b7d2

Library Dependencies Added to pom.xml-File Import of SDE-Datasources geo-backend/trunk@5 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 02 Sep 2009 09:07:03 +0000
parents
children 12f88239fb33
comparison
equal deleted inserted replaced
128:9b3f5a067c29 129:110e3ac1b7d2
1 /**
2 * Title: TechnicalException, $Header: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/exception/TechnicalException.java,v 1.2 2008/08/18 14:50:33 drewnak Exp $
3 * Source: $Source: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/exception/TechnicalException.java,v $
4 * created by: Stefan Blume (blume)
5 * erstellt am: 21.11.2007
6 * Copyright: con terra GmbH, 2005
7 *
8 * modified by: $Author: drewnak $
9 * modified on: $Date: 2008/08/18 14:50:33 $
10 * Version: $Revision: 1.2 $
11 * TAG: $Name: $
12 * locked from: $Locker: $
13 * CVS State: $State: Exp $
14 * Project: $ProjectName$
15 */
16 package de.intevation.gnv.geobackend.sde.datasources.exception;
17
18 import org.apache.log4j.Logger;
19
20 /**
21 * The class <code>TechnicalException</code> fulfills the following purposes:
22 * <ol>
23 * <li></li>
24 * </ol>
25 *
26 * @author blume
27 * @version 1.0
28 * @serial 1.0
29 * @see
30 * @since 21.11.2007 08:12:08
31 */
32 public class TechnicalException extends Exception{
33
34 /**
35 * Default Logging instance
36 */
37 private static Logger sLogger = Logger.getLogger(TechnicalException.class);
38
39 /**
40 * Constructs a new exception with <code>null</code> as its detail message.
41 * The cause is not initialized, and may subsequently be initialized by a
42 * call to {@link #initCause}.
43 */
44 public TechnicalException() {
45 }
46
47 /**
48 * Constructs a new exception with the specified detail message. The
49 * cause is not initialized, and may subsequently be initialized by
50 * a call to {@link #initCause}.
51 *
52 * @param message the detail message. The detail message is saved for
53 * later retrieval by the {@link #getMessage()} method.
54 */
55 public TechnicalException(String message) {
56 super(message);
57 }
58 public TechnicalException(Throwable pCause) {
59 super(pCause);
60 }
61
62 /**
63 * Constructs a new exception with the specified detail message and
64 * cause. <p>Note that the detail message associated with
65 * <code>cause</code> is <i>not</i> automatically incorporated in
66 * this exception's detail message.
67 *
68 * @param message the detail message (which is saved for later retrieval
69 * by the {@link #getMessage()} method).
70 * @param cause the cause (which is saved for later retrieval by the
71 * {@link #getCause()} method). (A <tt>null</tt> value is
72 * permitted, and indicates that the cause is nonexistent or
73 * unknown.)
74 * @since 1.4
75 */
76 public TechnicalException(String message, Throwable cause) {
77 super(message, cause);
78 }
79 }

http://dive4elements.wald.intevation.org