List of usage examples for org.springframework.dao UncategorizedDataAccessException subclass-usage
From source file com.alibaba.cobar.client.exception.UncategorizedCobarClientException.java
public class UncategorizedCobarClientException extends UncategorizedDataAccessException { private static final long serialVersionUID = -5001927974502714777L; public UncategorizedCobarClientException(String msg, Throwable cause) { super(msg, cause); }
From source file com.frank.search.solr.UncategorizedSolrException.java
/** * SolrClient threw an exception that could not be mapped. UncategorizedSolrException wraps the original Exception * * @author Christoph Strobl */ public class UncategorizedSolrException extends UncategorizedDataAccessException {
From source file org.cfr.capsicum.support.CayenneOperationException.java
/** * Generic uncategorized Cayenne exception. */ public class CayenneOperationException extends UncategorizedDataAccessException { /**
From source file org.springextensions.db4o.Db4oSystemException.java
/**
* Runtime (unchecked) exception used for wrapping the db4o exceptions
* which do not match the Spring DAO exception hierarchy.
*
* @author Costin Leau
*/
From source file org.springextensions.neodatis.NeoDatisSystemException.java
/** * * @author Joerg Bellmann * */ @SuppressWarnings("serial")
From source file nivance.jpa.cassandra.prepare.support.exception.CassandraUncategorizedException.java
/**
* Spring data access exception for an uncategorized Cassandra exception.
*
* @author Alex Shvid
* @author Matthew T. Adams
*/
From source file com.joyveb.dbpimpl.cass.prepare.support.exception.CassandraUncategorizedException.java
/**
* Spring data access exception for an uncategorized Cassandra exception.
*
* @author Alex Shvid
* @author Matthew T. Adams
*/
From source file org.mybatis.spring.MyBatisSystemException.java
/**
* MyBatis specific subclass of {@code UncategorizedDataAccessException}, for MyBatis system errors that do
* not match any concrete {@code org.springframework.dao} exceptions.
*
* In MyBatis 3 {@code org.apache.ibatis.exceptions.PersistenceException} is a {@code RuntimeException},
* but using this wrapper class to bring everything under a single hierarchy will be easier for client code to
From source file gov.nasa.jpl.docweb.spring.exception.SesameSystemException.java
/** * Uncategorized runtime exception wrapper for exceptions thrown by Sesame. * * @see ExceptionConverter#convertException(String, OpenRDFException) */ public class SesameSystemException extends UncategorizedDataAccessException {
From source file com.atom.empire.das.EmpireDBException.java
/** * Exception inside springs exception hierarchy. This may be good for client * code that catches any {@link org.springframework.dao.DataAccessException} * and doesn't want to look for implementation specific {@link org.apache.empire.exceptions.EmpireException}. */ public class EmpireDBException extends UncategorizedDataAccessException {