Class CsvRecursionException

All Implemented Interfaces:
Serializable

public class CsvRecursionException extends CsvRuntimeException
This exception is thrown on initiation of field mapping if CsvRecurse has been improperly used.
Since:
5.0
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • offendingType

      private final Class<?> offendingType
  • Constructor Details

    • CsvRecursionException

      public CsvRecursionException(String message, Class<?> offendingType)
      Constructor for an error message and the type that caused a recursion problem.
      Parameters:
      message - A human-readable error message
      offendingType - The type that is misconfigured and caused the error
  • Method Details

    • getOffendingType

      public Class<?> getOffendingType()
      Returns:
      The type that is misconfigured and caused the error