userObj.setName( "test1" );
userObj.setDescription( "testUpdateUser" );
userObj.setPassword( "newpass" );
try {
service.updateUser( userObj );
Assert.fail();
} catch ( UserRoleException e ) {
Assert.assertTrue( "ERROR_0001 not found in " + e.getMessage(), e.getMessage().indexOf( "ERROR_0001" ) >= 0 );
}