summaryrefslogtreecommitdiff
path: root/src/main/java/org/mockito/exceptions/misusing/InjectMocksException.java
blob: 616d4b69a1364e31cb4cb4b844c98d6c4c9620b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2018 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.exceptions.misusing;

import org.mockito.exceptions.base.MockitoException;

/**
 * Thrown when creation of test subject annotated with InjectMocks fails.
 */
public class InjectMocksException extends MockitoException {
    public InjectMocksException(String message, Throwable cause) {
        super(message, cause);
    }
}