• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2016 Mockito contributors
3  * This program is made available under the terms of the MIT License.
4  */
5 package org.mockito.internal.exceptions;
6 
7 public class MockitoLimitations {
8 
9     public final static String NON_PUBLIC_PARENT = "Mocking methods declared on non-public parent classes is not supported.";
10 
11 }
12