All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.exceptions.verification.MoreThanAllowedActualInvocations Maven / Gradle / Ivy

There is a newer version: 5.11.0
Show newest version
/*
 * 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;

/**
 * Thrown when atMost(x) verification fails. See {@link org.mockito.Mockito#atMost(int)}.
 *
 * @since 2.20.5
 */
public class MoreThanAllowedActualInvocations extends MockitoAssertionError {

    public MoreThanAllowedActualInvocations(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy