root/dwt/DWTException.d

Revision 259:c0d810de7093, 4.5 kB (checked in by Frank Benoit <benoit@tionex.de>, 3 months ago)

Update SWT 3.4M7 to 3.4

Line 
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  * Port to the D programming language:
11  *     Frank Benoit <benoit@tionex.de>
12  *******************************************************************************/
13 module dwt.DWTException;
14
15 import dwt.dwthelper.utils;
16
17 import dwt.DWT;
18
19 import tango.core.Exception;
20 import tango.io.Stdout;
21
22 /**
23  * This runtime exception is thrown whenever a recoverable error
24  * occurs internally in DWT. The message text and error code
25  * provide a further description of the problem. The exception
26  * has a <code>throwable</code> field which holds the underlying
27  * exception that caused the problem (if this information is
28  * available (i.e. it may be null)).
29  * <p>
30  * SWTExceptions are thrown when something fails internally,
31  * but DWT is left in a known stable state (eg. a widget call
32  * was made from a non-u/i thread, or there is failure while
33  * reading an Image because the source file was corrupt).
34  * </p>
35  *
36  * @see DWTError
37  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
38  */
39
40 public class DWTException : Exception {
41     /**
42      * The DWT error code, one of DWT.ERROR_*.
43      */
44     public int code;
45
46     /**
47      * The underlying throwable that caused the problem,
48      * or null if this information is not available.
49      */
50     public Exception throwable( Exception e ){
51         this.next = e;
52         return this.next;
53     }
54     public Exception throwable(){
55         return this.next;
56     }
57
58
59     //static final long serialVersionUID = 3257282552304842547L;
60
61 /**
62  * Constructs a new instance of this class with its
63  * stack trace filled in. The error code is set to an
64  * unspecified value.
65  */
66 public this () {
67     this (DWT.ERROR_UNSPECIFIED);
68 }
69
70 /**
71  * Constructs a new instance of this class with its
72  * stack trace and message filled in. The error code is
73  * set to an unspecified value.  Specifying <code>null</code>
74  * as the message is equivalent to specifying an empty string.
75  *
76  * @param message the detail message for the exception
77  */
78 public this (String message) {
79     this (DWT.ERROR_UNSPECIFIED, message);
80 }
81
82 /**
83  * Constructs a new instance of this class with its
84  * stack trace and error code filled in.
85  *
86  * @param code the DWT error code
87  */
88 public this (int code) {
89     this (code, DWT.findErrorText (code));
90 }
91
92 /**
93  * Constructs a new instance of this class with its
94  * stack trace, error code and message filled in.
95  * Specifying <code>null</code> as the message is
96  * equivalent to specifying an empty string.
97  *
98  * @param code the DWT error code
99  * @param message the detail message for the exception
100  */
101 public this (int code, String message) {
102     super (message);
103     this.code = code;
104 }
105
106 /**
107  * Returns the underlying throwable that caused the problem,
108  * or null if this information is not available.
109  * <p>
110  * NOTE: This method overrides Throwable.getCause() that was
111  * added to JDK1.4. It is necessary to override this method
112  * in order for inherited printStackTrace() methods to work.
113  * </p>
114  * @return the underlying throwable
115  *
116  * @since 3.1
117  */
118 public Exception getCause() {
119     return throwable;
120 }
121
122 /**
123  *  Returns the string describing this DWTException object.
124  *  <p>
125  *  It is combined with the message string of the Throwable
126  *  which caused this DWTException (if this information is available).
127  *  </p>
128  *  @return the error message string of this DWTException object
129  */
130 public String getMessage () {
131     if (throwable is null) return super.toString ();
132     return super.toString () ~ " (" ~ throwable.toString () ~ ")"; //$NON-NLS-1$ //$NON-NLS-2$
133 }
134
135 /**
136  * Outputs a printable representation of this exception's
137  * stack trace on the standard error stream.
138  * <p>
139  * Note: printStackTrace(PrintStream) and printStackTrace(PrintWriter)
140  * are not provided in order to maintain compatibility with CLDC.
141  * </p>
142  */
143 public void printStackTrace () {
144     Stderr.formatln( "stacktrace follows (if feature compiled in)" );
145     foreach( msg; info ){
146         Stderr.formatln( "{}", msg );
147     }
148     if ( throwable !is null) {
149         Stderr.formatln ("*** Stack trace of contained exception ***"); //$NON-NLS-1$
150         foreach( msg; throwable.info ){
151             Stderr.formatln( "{}", msg );
152         }
153     }
154 }
155
156 }
Note: See TracBrowser for help on using the browser.