net.sf.andromedaioc.exception.BeanCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.exception;
public class BeanCreationException extends RuntimeException {
public BeanCreationException(String id, String message, Throwable cause) {
super(String.format("Error creating bean with id = %s. Reason: %s", id, message), cause);
}
}