Home | History | Annotate | Download | only in misusing
      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.misusing;
      6 
      7 import org.mockito.exceptions.base.MockitoException;
      8 
      9 public class MockitoConfigurationException extends MockitoException {
     10 
     11     private static final long serialVersionUID = 1L;
     12 
     13     public MockitoConfigurationException(String message) {
     14         super(message);
     15     }
     16 
     17     public MockitoConfigurationException(String message, Exception cause) {
     18         super(message, cause);
     19     }
     20 }