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

org.sklsft.generator.exception.BeanNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.0.0-M2
Show newest version
package org.sklsft.generator.exception;

public class BeanNotFoundException extends RuntimeException {

private static final long serialVersionUID = 1L;
	
	public BeanNotFoundException (String message) {
		super(message);
	}

	public BeanNotFoundException (String message, Throwable t) {
		super(message, t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy