Home | History | Annotate | Download | only in exceptions
      1 /*
      2  * Copyright (c) 2007 Mockito contributors
      3  * This program is made available under the terms of the MIT License.
      4  */
      5 
      6 package org.mockito.exceptions;
      7 
      8 import org.mockito.invocation.DescribedInvocation;
      9 import 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  */
     16 public interface PrintableInvocation {
     17 
     18     String toString();
     19 
     20     Location getLocation();
     21 
     22 }