comparison dwtx/jface/text/templates/TemplateException.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
59 private static final long serialVersionUID= 3906362710416699442L; 59 private static final long serialVersionUID= 3906362710416699442L;
60 60
61 /** 61 /**
62 * Creates a new template exception. 62 * Creates a new template exception.
63 */ 63 */
64 public TemplateException() { 64 public this() {
65 super(); 65 super();
66 } 66 }
67 67
68 /** 68 /**
69 * Creates a new template exception. 69 * Creates a new template exception.
70 * 70 *
71 * @param message the message describing the problem that arose 71 * @param message the message describing the problem that arose
72 */ 72 */
73 public TemplateException(String message) { 73 public this(String message) {
74 super(message); 74 super(message);
75 } 75 }
76 76
77 /** 77 /**
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 TemplateException(String message, Throwable cause) { 83 public this(String message, Throwable 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 TemplateException(Throwable cause) { 92 public this(Throwable cause) {
93 super(cause); 93 super(cause);
94 } 94 }
95 } 95 }