com.fitbur.mockito.exceptions.verification.SmartNullPointerException Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito.exceptions.verification;
import com.fitbur.mockito.exceptions.base.MockitoException;
public class SmartNullPointerException extends MockitoException {
private static final long serialVersionUID = 1L;
public SmartNullPointerException(String message) {
super(message);
}
}