public class BoundaryViolationException extends Exception
{
    public BoundaryViolationException( String s )
    {
        super( s );
    }
}
