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

com.streamsets.pipeline.sdk.Errors Maven / Gradle / Ivy

/*
 * Copyright (c) 2021 StreamSets Inc.
 */
package com.streamsets.pipeline.sdk;

import com.streamsets.pipeline.api.ErrorCode;

public enum Errors implements ErrorCode {
  SDK_0001("Exception: {}"),
  ;

  private final String message;

  Errors(String message) {
    this.message = message;
  }

  @Override
  public String getCode() {
    return name();
  }

  @Override
  public String getMessage() {
    return message;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy