Show GtpProgramException.java syntax highlighted
package geronimo.hoshigo.model.external;
/**
* Exception levée lorsque un GtpProgram rencontre une erreur
*/
@SuppressWarnings("serial")
public class GtpProgramException extends GoProgramException
{
/**
* Constructeur
* @param errorMessage message d'erreur
*/
public GtpProgramException(String errorMessage)
{
super(errorMessage);
// TODO Auto-generated constructor stub
}
}
See more files for this project here