
net.cassite.pure.ioc.IOCException 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 by cass.toolbox.ioc
*
* @author wkgcass
*
*/
public class IOCException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 4202618483071924377L;
public IOCException() {
super();
}
public IOCException(String s) {
super(s);
}
public IOCException(Throwable t) {
super(t);
}
public IOCException(String s, Throwable t) {
super(s, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy