FileDocCategorySizeDatePackage
GeneratorException.javaAPI DocGlassfish v2 API2635Fri May 04 22:32:58 BST 2007com.sun.ejb.codegen

GeneratorException

public class GeneratorException extends Exception
The Generator exception is thrown whenever there is an error in generating the stubs and skeletons and other related files.

Fields Summary
private String
reason
Constructors Summary
public GeneratorException(String s)
Constructs the Generator exception with the specified string.

param
the string description

	super(s);
	this.reason = s;
    
Methods Summary
public java.lang.StringtoString()
Return the string representation of the exception.

return
the string representation of the exception.

	return reason;