JSONPath.Error (JSONPath v0.1.0)

Copy Markdown View Source

Error value for invalid JSONPath queries

Summary

Types

error_type()

@type error_type() ::
  :invalid_expression
  | :unexpcected_argument
  | :unexpected_comparison
  | :invalid_number
  | :invalid_unicode

t()

@type t() :: %JSONPath.Error{
  expression: binary(),
  message: binary(),
  type: error_type()
}