error_to_send.rb

 1# frozen_string_literal: true
 2
 3class ErrorToSend < StandardError
 4	attr_reader :stanza
 5
 6	def initialize(stanza)
 7		super(stanza.to_s)
 8		@stanza = stanza
 9	end
10end