public class

InvalidDataAccessApiUsageException

extends NonTransientDataAccessException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.dao.DataAccessException
             ↳ org.springframework.dao.NonTransientDataAccessException
               ↳ org.springframework.dao.InvalidDataAccessApiUsageException
Known Direct Subclasses

Class Overview

Exception thrown on incorrect usage of the API, such as failing to "compile" a query object that needed compilation before execution.

This represents a problem in our Java data access framework, not the underlying data access infrastructure.

Summary

Public Constructors
InvalidDataAccessApiUsageException(String msg)
Constructor for InvalidDataAccessApiUsageException.
InvalidDataAccessApiUsageException(String msg, Throwable cause)
Constructor for InvalidDataAccessApiUsageException.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public InvalidDataAccessApiUsageException (String msg)

Constructor for InvalidDataAccessApiUsageException.

Parameters
msg the detail message

public InvalidDataAccessApiUsageException (String msg, Throwable cause)

Constructor for InvalidDataAccessApiUsageException.

Parameters
msg the detail message
cause the root cause from the data access API in use