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;
7
8import org.mockito.invocation.DescribedInvocation;
9import org.mockito.invocation.Location;
10
11@Deprecated
12/**
13 * @Deprecated. We needed to move this class to a better place to keep consistency of the API.
14 * Please use {@link DescribedInvocation} instead.
15 */
16public interface PrintableInvocation {
17
18    String toString();
19
20    Location getLocation();
21
22}