the-algorithm/pushservice/src/main/scala/com/twitter/frigate/pushservice/exception/UttEntityNotFoundException....

13 lines
338 B
Scala

package com.twitter.frigate.pushservice.exception
import scala.util.control.NoStackTrace
/**
* Throw exception if UttEntity is not found where it might be a required data field
*
* @param message Exception message
*/
class UttEntityNotFoundException(private val message: String)
extends Exception(message)
with NoStackTrace