Class DataAccessException

  • All Implemented Interfaces:
    Direct Known Subclasses:
    InvalidResourceUsageException

    public abstract class DataAccessException
    extends org.apache.shiro.ShiroException
    Generic exception representing a problem when attempting to access data.

    The idea was borrowed from the Spring Framework, which has a nice model for a generic DAO exception hierarchy. Unfortunately we can't use it as we can't force a Spring API usage on all Shiro end-users.

    Since:
    1.2
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
       message)
      Constructs a DataAccessException with a message explaining the cause of the exception.
       message,  cause)
      Constructs a DataAccessException with a message explaining the cause of the exception.
    • Method Summary

      • Methods inherited from class java.lang.

        , , , , , , , , , , , ,
      • Methods inherited from class java.lang.

        , , , , , , , , ,
    • Constructor Detail

      • DataAccessException

        public DataAccessException​( message)
        Constructs a DataAccessException with a message explaining the cause of the exception.
        Parameters:
        message - the message explaining the cause of the exception
      • DataAccessException

        public DataAccessException​( message,
                                    cause)
        Constructs a DataAccessException with a message explaining the cause of the exception.
        Parameters:
        message - the explanation
        cause - the root cause of the exception, typically an API-specific exception