com.cmeza.spring.ioc.handler.exceptions.IocException Maven / Gradle / Ivy
The newest version!
package com.cmeza.spring.ioc.handler.exceptions;
public class IocException extends RuntimeException {
public IocException() {
}
public IocException(String message) {
super(message);
}
public IocException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy