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

com.sap.cloud.lm.sl.slp.activiti.ProcessError Maven / Gradle / Ivy

package com.sap.cloud.lm.sl.slp.activiti;

public class ProcessError {

    public enum ErrorType {
        PROCESS_EXECUTION_ERROR("1");

        private final String errorCode;

        ErrorType(String errorCode) {
            this.errorCode = errorCode;
        }

        private String getErrorCode() {
            return errorCode;
        }

    }

    private final ErrorType errorType;
    private final String message;

    public ProcessError(ErrorType errorType, String message) {
        super();
        this.errorType = errorType;
        this.message = message;
    }

    public String getCode() {
        return errorType.getErrorCode();
    }

    public String getMessage() {
        return message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy