org.bigraphs.spring.data.cdo.CreateResourceFailedException 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
The newest version!
package org.bigraphs.spring.data.cdo;
import org.springframework.dao.DataAccessException;
/**
* @author Dominik Grzelak
*/
public class CreateResourceFailedException extends DataAccessException {
public CreateResourceFailedException(String msg) {
super(msg);
}
public CreateResourceFailedException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy