• 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 
6 package org.mockito.exceptions.misusing;
7 
8 import org.mockito.exceptions.base.MockitoException;
9 
10 public class InvalidUseOfMatchersException extends MockitoException {
11 
12     private static final long serialVersionUID = 1L;
13 
InvalidUseOfMatchersException(String message)14     public InvalidUseOfMatchersException(String message) {
15         super(message);
16     }
17 
InvalidUseOfMatchersException()18     public InvalidUseOfMatchersException() {
19         super("");
20     }
21 }
22