placeholder in case the deserialized error is no longer available
# File lib/dynflow/errors.rb, line 7 def self.for_exception_class(class_name) Class.new(self) do define_singleton_method :name do class_name end end end
# File lib/dynflow/errors.rb, line 15 def self.inspect "#{UnknownError.name}[#{name}]" end
# File lib/dynflow/errors.rb, line 19 def self.to_s inspect end
# File lib/dynflow/errors.rb, line 23 def inspect "#{self.class.inspect}: #{message}" end