ScalaTest 1.0
|
|
org/scalatest/StackDepthException.scala
]
abstract
class
StackDepthException(val
message : scala.Option[java.lang.String], val
cause : scala.Option[java.lang.Throwable], val
failedCodeStackDepth : Int)
extends
java.lang.RuntimeException with
StackDepthmessage -
an optional detail message for this StackDepthException
.cause -
an optional cause, the Throwable
that caused this StackDepthException
to be thrown.failedCodeStackDepth -
the depth in the stack trace of this exception at which the line of test code that failed resides.NullPointerException -
if message
is null
, or Some(null)
.NullPointerException -
if cause
is null
, or Some(null)
.Values and Variables inherited from StackDepth | |
failedCodeFileNameAndLineNumberString |
Method Summary | |
override final def
|
initCause (throwable : java.lang.Throwable) : java.lang.Throwable |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
ScalaTest 1.0
|
|