info.baseinsight.core.event.AppShutdownEvent Maven / Gradle / Ivy
The newest version!
package info.baseinsight.core.event;
public class AppShutdownEvent extends AppEvent{
/**
* Create a new ApplicationEvent.
* @param source the object on which the event initially occurred (never {@code null})
*/
public AppShutdownEvent(Object source) {
super(source);
}
}