All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mostlyoriginal.api.SingletonException Maven / Gradle / Ivy

Go to download

Dependency injection for singleton components. Creates a singleton component upon injection.

The newest version!
package net.mostlyoriginal.api;

import java.util.Set;

import com.artemis.Component;

public class SingletonException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public SingletonException(Set> singletonComponents) {
        super("Components annotated with @Singleton cannot be added to entities. Singleton components: " + singletonComponents);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy