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