de.eldoria.eldoutilities.debug.data.LogData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of debugging Show documentation
Show all versions of debugging Show documentation
Utilitites for debugging plugins
/*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* Copyright (C) EldoriaRPG Team and Contributor
*/
package de.eldoria.eldoutilities.debug.data;
/**
* Represents log data.
*/
public class LogData {
private final String log;
private final String pluginLog;
private final String[] internalExceptions;
private final String[] externalExceptions;
public LogData(String log, String pluginLog, String[] internalExceptions, String[] externalExceptions) {
this.log = log;
this.pluginLog = pluginLog;
this.internalExceptions = internalExceptions;
this.externalExceptions = externalExceptions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy