blob: ae39427ca66fe8e8431e0a325b2e6538ea07bd3f [file] [log] [blame]
/*
* Copyright (c) 2007 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;
public class MockitoConfigurationException extends MockitoException {
private static final long serialVersionUID = 1L;
public MockitoConfigurationException(String message) {
super(message);
}
public MockitoConfigurationException(String message, Exception cause) {
super(message, cause);
}
}