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

airbrake.ValidBacktraces 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;

public class ValidBacktraces {

	public static boolean isValidBacktrace(String string) {
		return string.matches("[^:]*:\\d+.*");
	}

	public static boolean notValidBacktrace(String string) {
		return !isValidBacktrace(string);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy