blob: 710f1e1bd56519bf8d734e596d0f9c6bfbb48c00 [file] [log] [blame]
package org.mockito.exceptions.misusing;
import org.mockito.exceptions.base.MockitoException;
public class CannotStubVoidMethodWithReturnValue extends MockitoException {
public CannotStubVoidMethodWithReturnValue(String message) {
super(message);
}
}