All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy