ScalaTest 1.0
|
|
org/scalatest/TestFailedException.scala
]
class
TestFailedException(message : scala.Option[java.lang.String], cause : scala.Option[java.lang.Throwable], failedCodeStackDepth : Int)
extends
StackDepthExceptionmessage -
an optional detail message for this TestFailedException
.cause -
an optional cause, the Throwable
that caused this TestFailedException
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)
.Additional Constructor Summary | |
def
|
this
(cause : java.lang.Throwable, failedCodeStackDepth : Int) : TestFailedException
Create a
TestFailedException with the specified stack depth and cause. The
message field of this exception object will be initialized to
if (cause.getMessage == null) "" else cause.getMessage . |
def
|
this
(message : java.lang.String, failedCodeStackDepth : Int) : TestFailedException
Create a
TestFailedException with a specified stack depth and detail message. |
def
|
this
(message : java.lang.String, cause : java.lang.Throwable, failedCodeStackDepth : Int) : TestFailedException
Create a
TestFailedException with the specified stack depth, detail
message, and cause. |
def
|
this
(failedCodeStackDepth : Int) : TestFailedException
Create a
TestFailedException with specified stack depth and no detail message or cause. |
Value Summary | |
val
|
failedTestCodeFileNameAndLineNumberString
: scala.Option[java.lang.String]
failedTestCodeFileNameAndLineNumberString has been deprecated and will be removed in a future version of
ScalaTest. Please call failedCodeFileNameAndLineNumberString instead. |
val
|
failedTestCodeStackDepth
: Int
failedTestCodeStackDepth has been deprecated and will be removed in a future version of
ScalaTest. Please call failedCodeStackDepth instead. |
Values and Variables inherited from StackDepth | |
failedCodeFileNameAndLineNumberString |
Methods inherited from StackDepthException | |
initCause |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Additional Constructor Details |
def
this(failedCodeStackDepth : Int) : TestFailedException
TestFailedException
with specified stack depth and no detail message or cause.failedCodeStackDepth -
the depth in the stack trace of this exception at which the line of test code that failed resides.
def
this(message : java.lang.String, failedCodeStackDepth : Int) : TestFailedException
TestFailedException
with a specified stack depth and detail message.message -
A detail message for this TestFailedException
.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
.
def
this(cause : java.lang.Throwable, failedCodeStackDepth : Int) : TestFailedException
TestFailedException
with the specified stack depth and cause. The
message
field of this exception object will be initialized to
if (cause.getMessage == null) "" else cause.getMessage
.cause -
the cause, the Throwable
that caused this TestFailedException
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 cause
is null
.
def
this(message : java.lang.String, cause : java.lang.Throwable, failedCodeStackDepth : Int) : TestFailedException
TestFailedException
with the specified stack depth, detail
message, and cause.
Note that the detail message associated with cause is not automatically incorporated in this throwable's detail message.
message -
A detail message for this TestFailedException
.cause -
the cause, the Throwable
that caused this TestFailedException
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
.NullPointerException -
if cause
is null
.Value Details |
val
failedTestCodeStackDepth : Int
failedTestCodeStackDepth
has been deprecated and will be removed in a future version of
ScalaTest. Please call failedCodeStackDepth
instead.
val
failedTestCodeFileNameAndLineNumberString : scala.Option[java.lang.String]
failedTestCodeFileNameAndLineNumberString
has been deprecated and will be removed in a future version of
ScalaTest. Please call failedCodeFileNameAndLineNumberString
instead.
ScalaTest 1.0
|
|