View Javadoc

1   package cz.cuni.amis.pogamut.base.component.bus.exception;
2   
3   import java.util.logging.Logger;
4   
5   import cz.cuni.amis.pogamut.base.component.bus.IComponentBus;
6   import cz.cuni.amis.pogamut.base.component.bus.IComponentEvent;
7   
8   public class FatalErrorPropagatingEventException extends ComponentBusException {
9   	
10  	public FatalErrorPropagatingEventException(IComponentEvent event, IComponentBus origin) {
11  		super("Exception happened during the propagation of: " + event, origin);
12  	}
13  	
14  	public FatalErrorPropagatingEventException(IComponentEvent event, Logger log, IComponentBus origin) {
15  		super("Exception happened during the propagation of: " + event, log, origin);
16  	}
17  	
18  	public FatalErrorPropagatingEventException(IComponentEvent event, Throwable cause, IComponentBus origin) {
19  		super("Exception happened during the propagation of: " + event, cause, origin);
20  	}
21  	
22  	public FatalErrorPropagatingEventException(IComponentEvent event, Throwable cause, Logger log, IComponentBus origin) {
23  		super("Exception happened during the propagation of: " + event, cause, log, origin);
24  	}
25  
26  }