comparison dwtx/jface/internal/text/revisions/LineIndexOutOfBoundsException.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
34 private static final long serialVersionUID= 1L; 34 private static final long serialVersionUID= 1L;
35 35
36 /** 36 /**
37 * Constructs an <code>LineIndexOutOfBoundsException</code> with no detail message. 37 * Constructs an <code>LineIndexOutOfBoundsException</code> with no detail message.
38 */ 38 */
39 public LineIndexOutOfBoundsException() { 39 public this() {
40 super(); 40 super();
41 } 41 }
42 42
43 /** 43 /**
44 * Constructs an <code>LineIndexOutOfBoundsException</code> with the specified detail message. 44 * Constructs an <code>LineIndexOutOfBoundsException</code> with the specified detail message.
45 * 45 *
46 * @param s the detail message. 46 * @param s the detail message.
47 */ 47 */
48 public LineIndexOutOfBoundsException(String s) { 48 public this(String s) {
49 super(s); 49 super(s);
50 } 50 }
51 51
52 /** 52 /**
53 * Constructs a new <code>LineIndexOutOfBoundsException</code> 53 * Constructs a new <code>LineIndexOutOfBoundsException</code>
54 * object with an argument indicating the illegal index. 54 * object with an argument indicating the illegal index.
55 * 55 *
56 * @param index the illegal index. 56 * @param index the illegal index.
57 */ 57 */
58 public LineIndexOutOfBoundsException(int index) { 58 public this(int index) {
59 super("Line index out of range: " + index); //$NON-NLS-1$ 59 super("Line index out of range: " + index); //$NON-NLS-1$
60 } 60 }
61 } 61 }