Package cern.dip
Interface DipPublicationErrorHandler
-
public interface DipPublicationErrorHandler
This interface enables asynchronous DIP errors to be reported. Dip errors that can not be associated with any DIP method call are reported through this interface.This interface must be implemented by the DIP developer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleException(DipPublication publication, DipException ex)
invoked when an asynch error occurs.
-
-
-
Method Detail
-
handleException
void handleException(DipPublication publication, DipException ex)
invoked when an asynch error occurs.- Parameters:
publication
- source of the errorex
- exception details.
-
-