Current section
Files
Jump to
Current section
Files
lib/xberg/processing_warning.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e21c71a5751b345136e5ca51dea30bbd3862f7fdc63aa50e6b36be84c454e0e
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.ProcessingWarning do
@moduledoc """
A non-fatal warning from a processing pipeline stage.
Captures errors from optional features that don't prevent extraction
but may indicate degraded results.
"""
@typedoc "A non-fatal warning from a processing pipeline stage."
@type t :: %__MODULE__{
source: String.t() | nil,
message: String.t() | nil
}
defstruct source: nil,
message: nil
end