comparison dwtx/jface/text/templates/TemplateException.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents eb21d3dfc767
children
comparison
equal deleted inserted replaced
161:f8d52b926852 162:1a5b8f8129df
60 60
61 /** 61 /**
62 * Creates a new template exception. 62 * Creates a new template exception.
63 */ 63 */
64 public this() { 64 public this() {
65 super(); 65 super(null);
66 } 66 }
67 67
68 /** 68 /**
69 * Creates a new template exception. 69 * Creates a new template exception.
70 * 70 *
78 * Creates a new template exception. 78 * Creates a new template exception.
79 * 79 *
80 * @param message the message describing the problem that arose 80 * @param message the message describing the problem that arose
81 * @param cause the original exception 81 * @param cause the original exception
82 */ 82 */
83 public this(String message, Throwable cause) { 83 public this(String message, Exception cause) {
84 super(message, cause); 84 super(message, cause);
85 } 85 }
86 86
87 /** 87 /**
88 * Creates a new template exception. 88 * Creates a new template exception.
89 * 89 *
90 * @param cause the original exception 90 * @param cause the original exception
91 */ 91 */
92 public this(Throwable cause) { 92 public this(Exception cause) {
93 super(cause); 93 super(null, cause);
94 } 94 }
95 } 95 }