com.github.mkorman9.exception.HashKeyNotFoundException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-dynamodb-mapper Show documentation
Show all versions of scala-dynamodb-mapper Show documentation
Simple framework for mapping between Scala case classes and Amazon DynamoDB items
package com.github.mkorman9.exception
/**
* Thrown when hash key is not retrieved from database after query
*
* @param message Human readable message
*/
class HashKeyNotFoundException(message: String) extends AttributeNotFoundException(message)