org.bigraphs.spring.data.cdo.InvalidCdoApiUsageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-cdo Show documentation
Show all versions of spring-data-cdo Show documentation
CDO support for Spring Data
package org.bigraphs.spring.data.cdo;
import org.springframework.dao.InvalidDataAccessApiUsageException;
public class InvalidCdoApiUsageException extends InvalidDataAccessApiUsageException {
public InvalidCdoApiUsageException(String msg) {
super(msg);
}
public InvalidCdoApiUsageException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy