org.mockito.internal.creation.instance.InstantationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
package org.mockito.internal.creation.instance;
import org.mockito.exceptions.base.MockitoException;
public class InstantationException extends MockitoException {
public InstantationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy