Example usage for org.springframework.dao DataAccessException subclass-usage

List of usage examples for org.springframework.dao DataAccessException subclass-usage

Introduction

In this page you can find the example usage for org.springframework.dao DataAccessException subclass-usage.

Usage

From source file cz.fi.muni.pa165.dao.DAException.java

/**
 * Our custom data access exception which is thrown in persistance layer.
 *
 * @author michal.lukac, 430614
 */
public class DAException extends DataAccessException {

From source file cz.muni.fi.airportservicelayer.exceptions.ValidationDataException.java

/**
 *
 * @author Sebastian Kupka
 */
public class ValidationDataException extends DataAccessException {

From source file cz.muni.fi.airportservicelayer.exceptions.IllegalArgumentDataException.java

/**
 *
 * @author Sebastian Kupka
 */
public class IllegalArgumentDataException extends DataAccessException {

From source file cz.muni.fi.airportservicelayer.exceptions.BasicDataAccessException.java

/**
 *
 * @author Sebastian Kupka
 */
public class BasicDataAccessException extends DataAccessException {

From source file net.sf.springderby.SchemaCreationException.java

/**
 * 
 * @author Andreas Veithen
 * @version $Id$
 */
public class SchemaCreationException extends DataAccessException {

From source file io.kahu.hawaii.util.exception.DBRepositoryException.java

public class DBRepositoryException extends DataAccessException {
    private static final long serialVersionUID = 1L;

    public DBRepositoryException(String msg) {
        super(msg);
    }

From source file com.trenako.web.test.DatabaseError.java

/**
 * 
 * @author Carlo Micieli
 *
 */
@SuppressWarnings("serial")

From source file org.cfr.capsicum.support.EntityNotFoundException.java

public class EntityNotFoundException extends DataAccessException {

    /**
     * 
     */
    private static final long serialVersionUID = -3768272454302720874L;

From source file org.springdata.ehcache.support.EhcacheException.java

public class EhcacheException extends DataAccessException {

    private static final long serialVersionUID = 6582587817641878295L;

    public EhcacheException(String msg) {
        super(msg);

From source file org.codehaus.grepo.core.registry.RegistryException.java

/**
 * Exeption thrown by a {@link GenericRegistry}.
 *
 * @author dguggi
 */
public class RegistryException extends DataAccessException {