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;
6
7@Deprecated
8/**
9 * @Deprecated. This class has been moved to internal packages because it was never meant to be public.
10 * If you need it for extending Mockito please let us know. You can still use {@link org.mockito.internal.reporting.Discrepancy}.
11 * However, the package clearly states that the class in a part of a public API so it can change.
12 */
13public class Discrepancy extends org.mockito.internal.reporting.Discrepancy {
14    public Discrepancy(int wantedCount, int actualCount) {
15        super(wantedCount, actualCount);
16    }
17}