
scala.concurrent.stm.skel.RollbackError.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-stm_sjs1_2.13 Show documentation
Show all versions of scala-stm_sjs1_2.13 Show documentation
A library for Software Transactional Memory in Scala
The newest version!
/* scala-stm - (c) 2009-2010, Stanford University, PPL */
package scala.concurrent.stm.skel
import util.control.ControlThrowable
/** A reusable exception instance, thrown by CCSTM when a transaction is doomed
* and should not continue executing. User code should either rethrow this
* exception or not catch it.
*
* @author Nathan Bronson
*/
private[stm] object RollbackError extends /* Error with */ ControlThrowable {
override def fillInStackTrace(): Throwable = this
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy