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

org.springframework.data.simpledb.exception.UncategorizedSpringDaoException Maven / Gradle / Ivy

Go to download

Provides a POJO centric model as per Spring Data interfaces to interact with Amazon SimpleDB, a non-relational datastore

There is a newer version: 1.0.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy