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

de.bund.bva.isyfact.task.exception.TaskRuntimeException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package de.bund.bva.isyfact.task.exception;

import de.bund.bva.isyfact.exception.FehlertextProvider;
import de.bund.bva.isyfact.exception.TechnicalRuntimeException;

public class TaskRuntimeException extends TechnicalRuntimeException {

    /** Serial version UID. */
    private static final long serialVersionUID = -3L;

    /** Error message provider for task exceptions. */
    private static final FehlertextProvider FEHLERTEXT_PROVIDER = new TaskFehlertextProvider();

    public TaskRuntimeException(String ausnahmeId, String... parameter) {
        super(ausnahmeId, FEHLERTEXT_PROVIDER, parameter);
    }

    public TaskRuntimeException(String ausnahmeId, Throwable cause, String... parameter) {
        super(ausnahmeId, cause, FEHLERTEXT_PROVIDER, parameter);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy