java.lang.Object |
↳ |
java.lang.Throwable |
|
↳ |
java.lang.Exception |
|
|
↳ |
java.lang.RuntimeException |
|
|
|
↳ |
android.support.test.espresso.AmbiguousViewMatcherException |
Class Overview
An exception which indicates that a Matcher matched multiple views in the hierarchy when
only one view was expected. It should be called only from the main thread.
Contains details about the matcher and the current view hierarchy to aid in debugging.
Since this is usually an unrecoverable error this exception is a runtime exception.
References to the view and failing matcher are purposefully not included in the state of this
object - since it will most likely be created on the UI thread and thrown on the instrumentation
thread, it would be invalid to touch the view on the instrumentation thread. Also the view
hierarchy may have changed since exception creation (leading to more confusion).
Summary
Nested Classes |
class |
AmbiguousViewMatcherException.Builder |
Builder for AmbiguousViewMatcherException .
|
[Expand]
Inherited Methods |
From class
java.lang.Throwable
final
void
|
addSuppressed(Throwable arg0)
|
Throwable
|
fillInStackTrace()
|
Throwable
|
getCause()
|
String
|
getLocalizedMessage()
|
String
|
getMessage()
|
StackTraceElement[]
|
getStackTrace()
|
final
Throwable[]
|
getSuppressed()
|
Throwable
|
initCause(Throwable arg0)
|
void
|
printStackTrace(PrintStream arg0)
|
void
|
printStackTrace(PrintWriter arg0)
|
void
|
printStackTrace()
|
void
|
setStackTrace(StackTraceElement[] arg0)
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|