comparison dwtx/jface/text/BadPositionCategoryException.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
179 private static final long serialVersionUID= 3761405300745713206L; 179 private static final long serialVersionUID= 3761405300745713206L;
180 180
181 /** 181 /**
182 * Creates a new bad position category exception. 182 * Creates a new bad position category exception.
183 */ 183 */
184 public BadPositionCategoryException() { 184 public this() {
185 super(); 185 super();
186 } 186 }
187 187
188 /** 188 /**
189 * Creates a new bad position category exception. 189 * Creates a new bad position category exception.
190 * 190 *
191 * @param message the exception's message 191 * @param message the exception's message
192 */ 192 */
193 public BadPositionCategoryException(String message) { 193 public this(String message) {
194 super(message); 194 super(message);
195 } 195 }
196 } 196 }