Class BadRecord.Failure

java.lang.Object
org.apache.beam.sdk.transforms.errorhandling.BadRecord.Failure
All Implemented Interfaces:
Serializable
Enclosing class:
BadRecord

@DefaultSchema(AutoValueSchema.class) public abstract static class BadRecord.Failure extends Object implements Serializable
See Also:
  • Constructor Details

    • Failure

      public Failure()
  • Method Details

    • getException

      public abstract @Nullable String getException()
      The exception itself, e.g. IOException. Null if there is a failure without an exception.
    • getExceptionStacktrace

      public abstract @Nullable String getExceptionStacktrace()
      The full stacktrace. Null if there is a failure without an exception.
    • getDescription

      public abstract String getDescription()
      The description of what was being attempted when the failure occurred.
    • builder

      public static BadRecord.Failure.Builder builder()