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

toothpick.configuration.MultipleRootException Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package toothpick.configuration;

import toothpick.Scope;

public class MultipleRootException extends RuntimeException {
    public MultipleRootException(Scope scope) {
        super(String.format("Scope %s is a new root in TP scope forest. Only one root is allowed in this configuration.", scope.getName()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy