All Downloads are FREE. Search and download functionalities are using the official Maven repository.

airbrake.QuietRubyBacktrace Maven / Gradle / Ivy

// Modified or written by Luca Marrocco for inclusion with airbrake.
// Copyright (c) 2009 Luca Marrocco.
// Licensed under the Apache License, Version 2.0 (the "License")

package airbrake;

import java.util.*;

public class QuietRubyBacktrace extends RubyBacktrace {

	public QuietRubyBacktrace() {
		super();
	}

	protected QuietRubyBacktrace(final List backtrace) {
		super(backtrace);
	}

	public QuietRubyBacktrace(final Throwable throwable) {
		super(throwable);
	}

	@Override
	protected void ignore() {
		ignoreCocoon();
		ignoreMozilla();
		ignoreSpringSecurity();
		ignoreMortbayJetty();
		ignoreJunit();
		ignoreEclipse();
		ignoreNoise();
	}

	@Override
	public Backtrace newBacktrace(final Throwable throwable) {
		return new QuietRubyBacktrace(throwable);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy