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

org.powermock.api.mockito.ClassNotPreparedException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy