Interface ErrHandler

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ErrHandler
ErrHandler is a handler of an Err object creation.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Handles an Err object creation.
  • Method Details

    • handle

      void handle(Err err, OffsetDateTime tm)
      Handles an Err object creation.
      Parameters:
      err - The Err object.
      tm - The creation time of the Err object.