akka.testkit.TestException.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2019-2021 Lightbend Inc.
*/
package akka.testkit
import scala.util.control.NoStackTrace
/**
* A predefined exception that can be used in tests. It doesn't include a stack trace.
*/
final case class TestException(message: String) extends RuntimeException(message) with NoStackTrace