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

org.onetwo.common.db.exception.NotUniqueResultException Maven / Gradle / Ivy

The newest version!
package org.onetwo.common.db.exception;

import org.onetwo.common.exception.BaseException;

public class NotUniqueResultException extends BaseException {

	public NotUniqueResultException(int resultCount) {
		super("query did not return a unique result: " + resultCount );
	}

	public NotUniqueResultException(String msg, Exception e) {
		super(msg, e);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy