Add comments.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1405 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qouyang 2006-08-30 03:53:23 +00:00
parent 3790e93c7e
commit 96c9ae4507
1 changed files with 3 additions and 2 deletions

View File

@ -27,12 +27,13 @@ public class AutoGenException extends GenBuildException {
@param expStr exception message string.
**/
public AutoGenException(String expStr) {
super("[AutoGenException]:" + expStr);
super(expStr);
}
public AutoGenException() {
super();
}
public AutoGenException(Exception e, String messsge){
super(e, messsge);
}