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.misusing;
7
8import org.mockito.exceptions.base.MockitoException;
9
10public class CannotVerifyStubOnlyMock extends MockitoException {
11
12    public CannotVerifyStubOnlyMock(String message) {
13        super(message);
14    }
15}
16