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

org.jvnet.annox.annotation.AnnotationClassNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.jvnet.annox.annotation;

import org.apache.commons.lang3.Validate;

public class AnnotationClassNotFoundException extends Exception {

	private static final long serialVersionUID = 1L;

	private String className;

	public AnnotationClassNotFoundException(String className, Throwable cause) {
		super("Annotation class [" + className + "] could not be found.", cause);
		Validate.notNull(className);
		this.className = className;
	}

	public String getClassName() {
		return className;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy