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

net.sf.andromedaioc.exception.BeanCreationException Maven / Gradle / Ivy

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy