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

org.sam.server.exception.BeanCreationException Maven / Gradle / Ivy

package org.sam.server.exception;

/**
 * 해당 빈을 생성할 수 없을 때 발생합니다.
 *
 * @author hypernova1
 * */
public class BeanCreationException extends RuntimeException {

    public BeanCreationException(Class clazz) {
        super("Bean cannot be created: " + clazz.getName());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy