org.springframework.data.simpledb.exception.UncategorizedSpringDaoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-simpledb Show documentation
Show all versions of spring-data-simpledb Show documentation
Provides a POJO centric model as per Spring Data interfaces to interact with Amazon SimpleDB, a non-relational datastore
package org.springframework.data.simpledb.exception;
import org.springframework.dao.UncategorizedDataAccessException;
public class UncategorizedSpringDaoException extends UncategorizedDataAccessException {
private static final long serialVersionUID = 1L;
public UncategorizedSpringDaoException(String msg, Throwable cause) {
super(msg, cause);
}
}