org.powermock.api.mockito.ClassNotPreparedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powermock-api-mockito-common Show documentation
Show all versions of powermock-api-mockito-common Show documentation
PowerMock API for Mockito. Common classes.
package org.powermock.api.mockito;
/**
* The exception is thrown when a user tries to mock class which is't prepared, but should be. For example it could
* be case mocking static call.
*/
public class ClassNotPreparedException extends RuntimeException {
public ClassNotPreparedException(String message) {
super(message);
}
}