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

io.castled.exceptions.pipeline.PipelineError Maven / Gradle / Ivy

package io.castled.exceptions.pipeline;

import lombok.Getter;

public enum PipelineError {
    INSUFFICIENT_WAREHOUSE_PREVILEGES(PipelineErrorType.USER_ACTIION_REQUIRED),
    CONNECTION_FAILED_INTERMITTENT(PipelineErrorType.INTERMITTENT),
    UNKNOWN_ERROR(PipelineErrorType.INTERNAL);

    @Getter
    private final PipelineErrorType pipelineErrorType;

    PipelineError(PipelineErrorType pipelineErrorType) {
        this.pipelineErrorType = pipelineErrorType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy