comparison dwtx/jface/text/BadLocationException.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 000f9136b8f7
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
177 private static final long serialVersionUID= 3257281452776370224L; 177 private static final long serialVersionUID= 3257281452776370224L;
178 178
179 /** 179 /**
180 * Creates a new bad location exception. 180 * Creates a new bad location exception.
181 */ 181 */
182 public BadLocationException() { 182 public this() {
183 super(); 183 super();
184 } 184 }
185 185
186 /** 186 /**
187 * Creates a new bad location exception. 187 * Creates a new bad location exception.
188 * 188 *
189 * @param message the exception message 189 * @param message the exception message
190 */ 190 */
191 public BadLocationException(String message) { 191 public this(String message) {
192 super(message); 192 super(message);
193 } 193 }
194 } 194 }