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

com.sap.cds.EmptyResultException Maven / Gradle / Ivy

/*******************************************************************
 * © 2019 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds;

/**
 * Thrown by the runtime when {@link Result#single()} is executed and the result is
 * empty. This exception will not cause the current transaction to be marked for
 * rollback.
 */
public class EmptyResultException extends CdsException {

	private static final long serialVersionUID = 1L;

	public EmptyResultException(String message, Throwable cause) {
		super(message, cause);
	}

	public EmptyResultException(String message) {
		super(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy