* Test that a bean validation error is thrown
* @throws Exception
*/
@Test
public void testFailingBeanValidationNullAddress() throws Exception {
SFSB1 sfsb1 = lookup("SFSB1", SFSB1.class);
try {
sfsb1.createEmployee("name", null, 2);
fail("should of thrown validation error for null address in Employee entity");
} catch (Throwable throwable) {
ConstraintViolationException constraintViolationException = null;
// find the ConstraintViolationException
while(throwable != null && ! (throwable instanceof ConstraintViolationException)) {