com.github.mkorman9.exception.SecondaryIndexNotFoundException.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 secondary index is not found in the database
*
* @param message Human readable message
*/
class SecondaryIndexNotFoundException(message: String) extends RuntimeException(message)