DataAccessException

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

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!")