aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/db/EntityNotFoundException.scala
blob: d76583332b545dabf8f835bf9b21e0d4a59f5cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package xyz.driver.pdsuicommon.db

import xyz.driver.pdsuicommon.domain.Id

class EntityNotFoundException(id: String, tableName: String)
    extends RuntimeException(s"Entity with id $id is not found in $tableName table") {

  def this(id: Id[_], tableName: String) = this(id.toString, tableName)
  def this(id: Long, tableName: String) = this(id.toString, tableName)
}