throws ApplicationException {
/* This exception should better be done in the client itself because
it requires no ejb connection. Anyway this is an "example" on how
business validation can be done */
if (value.getTax() < 0)
throw new ApplicationException("A Customer can not have a negative Tax");
}