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

org.continuity.api.entities.report.TaskError Maven / Gradle / Ivy

The newest version!
package org.continuity.api.entities.report;

public enum TaskError {

	MISSING_SOURCE("Required source information is missing."), ILLEGAL_TYPE("The source type is not supported."), INTERNAL_ERROR("An internal error occured.");

	private final String message;

	private TaskError(String message) {
		this.message = message;
	}

	@Override
	public String toString() {
		return name() + ": " + message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy