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);
}
}