
net.cassite.pure.ioc.AnnotationHandlingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure.ioc Show documentation
Show all versions of pure.ioc Show documentation
Lightweight type and annotation based dependency injection framework
The newest version!
package net.cassite.pure.ioc;
/**
* Thrown when handling an annotation.
*
* @author wkgcass
*
*/
public class AnnotationHandlingException extends IOCException {
/**
*
*/
private static final long serialVersionUID = -8266215180131541540L;
public AnnotationHandlingException() {
super();
}
public AnnotationHandlingException(String msg) {
super(msg);
}
public AnnotationHandlingException(Throwable t) {
super(t);
}
public AnnotationHandlingException(String msg, Throwable t) {
super(msg, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy