Package org.mockito.exceptions.base
Class MockitoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.mockito.exceptions.base.MockitoException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
CannotStubVoidMethodWithReturnValue
,CannotVerifyStubOnlyMock
,FriendlyReminderException
,InstantationException
,InvalidUseOfMatchersException
,MissingMethodInvocationException
,MockitoConfigurationException
,NotAMockException
,NullInsteadOfMockException
,SmartNullPointerException
,UnfinishedStubbingException
,UnfinishedVerificationException
,WrongTypeOfReturnValue
public class MockitoException extends java.lang.RuntimeException
Raised by mockito to emit an error either due to Mockito, or due to the User.The stack trace is filtered from mockito calls if you are using
Throwable.getStackTrace()
. For debugging purpose though you can still access the full stacktrace usinggetUnfilteredStackTrace()
. However note that other calls related to the stackTrace will refer to the filter stacktrace.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MockitoException(java.lang.String message)
MockitoException(java.lang.String message, java.lang.Throwable t)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StackTraceElement[]
getUnfilteredStackTrace()
-