blob: 01af460569b376425ce0dca3edbd48c06949fee5 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.exceptions.verification;
import org.mockito.exceptions.base.MockitoAssertionError;
public class TooLittleActualInvocations extends MockitoAssertionError {
private static final long serialVersionUID = 1L;
public TooLittleActualInvocations(String message) {
super(message);
}
}