Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

We propose to add two exception types:

 

Code Block
languagejava
public enum ExceptionType {
    /* exceptions due to incorrect deserialization indicating corrupt record */
    DeserializationException(1), 
    /* exceptions due to failures in processing */
    ProcessingException(2);
}

...

Compatibility, Deprecation, and Migration Plan

...