DataAccessException

class DataAccessException(msg: String = "DataAccess Exception!") : RuntimeException

This class inherits from RuntimeException and is thrown when there is a problem with some data access. This class may either be instantiated with a specific error message or with the default error message.

Constructors

Link copied to clipboard
constructor(msg: String = "DataAccess Exception!")

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?