Class MockitoException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CannotStubVoidMethodWithReturnValue, CannotVerifyStubOnlyMock, FriendlyReminderException, InstantationException, InvalidUseOfMatchersException, MissingMethodInvocationException, MockitoConfigurationException, NotAMockException, NullInsteadOfMockException, SmartNullPointerException, UnfinishedStubbingException, UnfinishedVerificationException, WrongTypeOfReturnValue

public class MockitoException extends 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 using getUnfilteredStackTrace(). However note that other calls related to the stackTrace will refer to the filter stacktrace.

See Also:
  • Constructor Details

    • MockitoException

      public MockitoException(String message, Throwable t)
    • MockitoException

      public MockitoException(String message)
  • Method Details