blob: c1f7f0f87eebc1dc2432dd7ab8f0a626ef653b53 [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);
}
}