Show TakenVertexException.java syntax highlighted
package geronimo.hoshigo.model.goban;
/**
* Exception levée lorque l'on joue sur une intersection déjÃ
* occupée
*/
@SuppressWarnings("serial")
public class TakenVertexException extends VertexException
{
public TakenVertexException(Vertex vertex)
{
super(vertex);
}
}
See more files for this project here