Interface SkippableRecordException


public interface SkippableRecordException
Exception that will be reported to telemetry and skipped

Example:

 
 class MyException extends RuntimeException implements SkippableRecordException {
    public MyException(String message) {
       super(message);}
 }