View Source Datix.ParseError exception (datix v0.3.1)

An exception for when there is an error parsing a string.

Link to this section Summary

Link to this section Types

@type reason() ::
  {:expected_exact, expected :: String.t(), got :: String.t()}
  | {:conflict, expected :: term(), got :: term()}
  | :invalid_input
  | :invalid_integer
  | :invalid_string
@type t() :: %Datix.ParseError{
  __exception__: term(),
  modifier: String.t(),
  reason: reason()
}