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

de.eldoria.eldoutilities.debug.data.LogData Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
/*
 *     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