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