com.github.triceo.splitlog.splitters.AbstractTailSplitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of splitlog-core Show documentation
Show all versions of splitlog-core Show documentation
These are the core parts of splitlog. This is where the implementations of the public APIs live. Classes from this package come with no API stability guarantees.
package com.github.triceo.splitlog.splitters;
import java.util.List;
import com.github.triceo.splitlog.api.ExceptionDescriptor;
import com.github.triceo.splitlog.api.TailSplitter;
import com.github.triceo.splitlog.splitters.exceptions.DefaultExceptionDescriptor;
abstract class AbstractTailSplitter implements TailSplitter {
@Override
public ExceptionDescriptor determineException(final List raw) {
return DefaultExceptionDescriptor.parseStackTrace(raw);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy