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