blob: d47a4409d9f80cc0977486b7d8d5885fc97884ee [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);
}
}