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

org.adoptopenjdk.jitwatch.model.LogParseException Maven / Gradle / Ivy

/*
 * Copyright (c) 2013-2015 Chris Newland.
 * Licensed under https://github.com/AdoptOpenJDK/jitwatch/blob/master/LICENSE-BSD
 * Instructions: https://github.com/AdoptOpenJDK/jitwatch/wiki
 */
package org.adoptopenjdk.jitwatch.model;

public class LogParseException extends Exception
{
	private static final long serialVersionUID = 1L;

	public LogParseException(String message)
	{
		super(message);
	}
	
	public LogParseException(String message, Throwable cause)
	{
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy