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

org.jvault.exceptions.InvalidAnnotationConfigClassException Maven / Gradle / Ivy

package org.jvault.exceptions;


/**
 * Throw when, trying to define beans with BeansArea annotation,
* if the class is not marked with BeansArea annotation. * * @author devxb * @since 0.1 */ public final class InvalidAnnotationConfigClassException extends RuntimeException{ public InvalidAnnotationConfigClassException(String name){ super("\"" + name + "\" is not marked as @BeansArea"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy