blob: 83f2aabbf0ccd7617388816a797781f58170f17f [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.exceptions.verification;
import org.mockito.exceptions.base.MockitoException;
public class SmartNullPointerException extends MockitoException {
private static final long serialVersionUID = 1L;
public SmartNullPointerException(String message) {
super(message);
}
}