* Notifies the listeners that an error occurred reading an entry.
* @param t the error that occurred reading an entry.
*/
private void notifyListeners(Throwable t)
{
EntryReadErrorEvent ev = new EntryReadErrorEvent(this, dn, t);
for (EntryReadListener listener : listeners)
{
listener.entryReadError(ev);
}
}