/*
* Automatically Register ClientErrors
*/
Iterator<ClientErrorInterceptor> iterator = interceptors.iterator();
while (iterator.hasNext()) {
ClientErrorInterceptor interceptor = iterator.next();
ResteasyProviderFactory.getInstance().addClientErrorInterceptor(interceptor);
log.infov("Registered ClientErrorInterceptor {0}", interceptor.getClass());
}
}