Current section
Files
Jump to
Current section
Files
lib/fl_hook/handshake_error.ex
defmodule FLHook.HandshakeError do
@moduledoc """
An error that indicates that the socket connection is not a valid FLHook
socket or the encoding is wrong.
"""
defexception [:actual_message]
@impl true
def message(_error) do
"Socket is not a valid FLHook socket"
end
end