1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.exceptions;
6
7public class ExceptionIncludingMockitoWarnings extends RuntimeException {
8    private static final long serialVersionUID = -5925150219446765679L;
9
10    public ExceptionIncludingMockitoWarnings(String message, Throwable throwable) {
11        super(message, throwable);
12    }
13}
14