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

de.bund.bva.isyfact.task.exception.TaskDeactivatedException 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.task.konstanten.Ereignisschluessel;

/**
 * This exception is thrown if the task is deactivated.
 */
public class TaskDeactivatedException extends TaskException {

    public TaskDeactivatedException(String taskId) {
        super(Ereignisschluessel.TASK_DEAKTIVIERT, taskId);
    }

    public TaskDeactivatedException(String taskId, Throwable cause) {
        super(Ereignisschluessel.TASK_DEAKTIVIERT, cause, taskId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy