Tabnine Logo
ExtractPrepareException.getMessage
Code IndexAdd Tabnine to your IDE (free)

How to use
getMessage
method
in
org.apache.gobblin.source.extractor.exception.ExtractPrepareException

Best Java code snippets using org.apache.gobblin.source.extractor.exception.ExtractPrepareException.getMessage (Showing top 10 results out of 315)

origin: apache/incubator-gobblin

@Override
public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
 Extractor<JsonArray, JsonElement> extractor = null;
 try {
  extractor = new MysqlExtractor(state).build();
 } catch (ExtractPrepareException e) {
  LOG.error("Failed to prepare extractor: error - " + e.getMessage());
  throw new IOException(e);
 }
 return extractor;
}
origin: apache/incubator-gobblin

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state)
   throws IOException {
  Extractor<JsonArray, JsonElement> extractor;
  try {
   extractor = new PostgresqlExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: apache/incubator-gobblin

 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state)
   throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new TeradataExtractor(state).build();
  } catch (ExtractPrepareException e) {
   log.error("Failed to prepare extractor: error - {}", e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: apache/incubator-gobblin

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new SqlServerExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: apache/incubator-gobblin

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new OracleExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: org.apache.gobblin/gobblin-sql

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new SqlServerExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: org.apache.gobblin/gobblin-sql

 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state)
   throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new TeradataExtractor(state).build();
  } catch (ExtractPrepareException e) {
   log.error("Failed to prepare extractor: error - {}", e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: org.apache.gobblin/gobblin-sql

@Override
public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
 Extractor<JsonArray, JsonElement> extractor = null;
 try {
  extractor = new MysqlExtractor(state).build();
 } catch (ExtractPrepareException e) {
  LOG.error("Failed to prepare extractor: error - " + e.getMessage());
  throw new IOException(e);
 }
 return extractor;
}
origin: org.apache.gobblin/gobblin-sql

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state) throws IOException {
  Extractor<JsonArray, JsonElement> extractor = null;
  try {
   extractor = new OracleExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
origin: org.apache.gobblin/gobblin-sql

 @Override
 public Extractor<JsonArray, JsonElement> getExtractor(WorkUnitState state)
   throws IOException {
  Extractor<JsonArray, JsonElement> extractor;
  try {
   extractor = new PostgresqlExtractor(state).build();
  } catch (ExtractPrepareException e) {
   LOG.error("Failed to prepare extractor: error - " + e.getMessage());
   throw new IOException(e);
  }
  return extractor;
 }
}
org.apache.gobblin.source.extractor.exceptionExtractPrepareExceptiongetMessage

Popular methods of ExtractPrepareException

  • <init>

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now