1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5
6package org.mockito.exceptions.verification;
7
8import org.mockito.exceptions.base.MockitoAssertionError;
9
10/**
11 * No interactions wanted. See exception's cause for location of undesired invocation.
12 */
13public class NoInteractionsWanted extends MockitoAssertionError {
14
15    private static final long serialVersionUID = 1L;
16
17    public NoInteractionsWanted(String message) {
18        super(message);
19    }
20}