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

com.sap.cds.reflect.CdsReflectiveOperationException Maven / Gradle / Ivy

There is a newer version: 3.8.0
Show newest version
/*******************************************************************
 * © 2019 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.reflect;

import java.io.Serial;

import com.sap.cds.CdsException;

public class CdsReflectiveOperationException extends CdsException {

	@Serial
	private static final long serialVersionUID = 1L;

	public CdsReflectiveOperationException(Throwable e) {
		super(e);
	}

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy