com.sap.cds.CdsException Maven / Gradle / Ivy
The newest version!
/*******************************************************************
* © 2019 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds;
import java.io.Serial;
public class CdsException extends RuntimeException {
@Serial
private static final long serialVersionUID = 1L;
public CdsException(Throwable e) {
super(e);
}
public CdsException(String message) {
super(message);
}
public CdsException(String message, Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy