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

org.onetwo.dbm.exception.EntityNotFoundException Maven / Gradle / Ivy

package org.onetwo.dbm.exception;



@SuppressWarnings("serial")
public class EntityNotFoundException extends DbmException{

	public EntityNotFoundException() {
		super("entity not found error!");
	}

	public EntityNotFoundException(Object obj) {
		super("entity["+obj+"] not found !");
	}

	public EntityNotFoundException(Class entityClass, Object id) {
		super("entity["+entityClass+"] not found with id : " + id);
	}

	public EntityNotFoundException(String detailMsg, Class entityClass, Object id) {
		super(detailMsg + " entity["+entityClass+"] not found with id : " + id);
	}

	public EntityNotFoundException(String msg) {
		super(msg);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy