001package org.intellimate.izou.events; 002 003/** 004 * Exception thrown if there are multiple Events fired at the same time. 005 */ 006//extends because evil hack for backward-compatibility 007@SuppressWarnings({"WeakerAccess", "deprecation"}) 008public class MultipleEventsException extends LocalEventManager.MultipleEventsException { 009}