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

pro.jk.ejoker.domain.AggregateRepositoryException Maven / Gradle / Ivy

package pro.jk.ejoker.domain;

public class AggregateRepositoryException extends RuntimeException {

	private static final long serialVersionUID = 872601114977415812L;

	public AggregateRepositoryException(String msg){
		super(msg);
	}
	
	public AggregateRepositoryException(String msg, RuntimeException e){
		super(msg, e);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy