Package org.mockito.exceptions.base

Source Code of org.mockito.exceptions.base.MockitoAssertionError

/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/

package org.mockito.exceptions.base;

import org.mockito.internal.exceptions.base.ConditionalStackTraceFilter;



public class MockitoAssertionError extends AssertionError {

    private static final long serialVersionUID = 1L;
    private StackTraceElement[] unfilteredStackTrace;

    public MockitoAssertionError(String message) {
        super(message);

        unfilteredStackTrace = getStackTrace();
       
        ConditionalStackTraceFilter filter = new ConditionalStackTraceFilter();
        filter.filter(this);
    }

    public StackTraceElement[] getUnfilteredStackTrace() {
        return unfilteredStackTrace;
    }
}
TOP

Related Classes of org.mockito.exceptions.base.MockitoAssertionError

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.