1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.exceptions.misusing;
6
7import org.mockito.exceptions.base.MockitoException;
8
9public class WrongTypeOfReturnValue extends MockitoException {
10
11    private static final long serialVersionUID = 1L;
12
13    public WrongTypeOfReturnValue(String message) {
14        super(message);
15    }
16}
17