Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 6914 |
dpurdie |
1 |
package com.erggroup.buildtool.daemon;
|
|
|
2 |
|
|
|
3 |
public class BuildSystemException extends Exception {
|
|
|
4 |
|
|
|
5 |
public BuildSystemException(String string) {
|
|
|
6 |
super(string);
|
|
|
7 |
}
|
|
|
8 |
|
|
|
9 |
/**This disables a compiler warning
|
|
|
10 |
* It was generated by eclipse
|
|
|
11 |
* It is used for version maintenance purposes in the case where his serializable class is actually serialized
|
|
|
12 |
*/
|
|
|
13 |
private static final long serialVersionUID = 1L;
|
|
|
14 |
|
|
|
15 |
}
|