1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.exceptions.verification;
6
7import org.mockito.exceptions.base.MockitoException;
8
9public class SmartNullPointerException extends MockitoException {
10
11    private static final long serialVersionUID = 1L;
12
13    public SmartNullPointerException(String message) {
14        super(message);
15    }
16}