Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added suggestion to log ignored exception (if we need to ignore those)

...

If in case, you have very legit reason to ignore it , have a comment, DO NOT leave it blank. It's also generally a good idea to log the error message, so that we know that it happened.

Code Block
try {
  ....
} catch (SqoopException ok) {
  // its ok for me ignore this, since it is harmless
}

...