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

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

The newest version!
/*******************************************************************
 * © 2020 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds;

import java.io.Serial;

/**
 * Exception thrown when an operation fails in the CdsDataStore.
 */
public class CdsDataStoreException extends CdsException {
	@Serial
	private static final long serialVersionUID = 1L;

	public CdsDataStoreException(String message, Throwable e) {
		super(message, e);
	}
	
	public CdsDataStoreException(String message) {
		super(message);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy