* @see com.mvp4g.client.event.EventBus#addHandler(java.lang.Class, boolean)
*/
public <T extends EventHandlerInterface<?>> T addHandler( Class<T> handlerClass, boolean bind ) throws Mvp4gException {
T handler = createHandler( handlerClass );
if ( handler == null ) {
throw new Mvp4gException(
"Handler with type "
+ handlerClass.getName()
+ " couldn't be created by the Mvp4g. Have you forgotten to set multiple attribute to true for this handler or are you trying to create an handler that belongs to another module (another type of event bus injected in this handler)?" );
}