class StaticTracing::Tracers::InvalidTracerError
Error for an invalid tracer
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/ruby-static-tracing/tracers.rb, line 8 def initialize msg = <<~MSG You need to add a valid tracer. To create a valid tracer please inherit from StaticTracing::Tracer::Base and follow the guide on how to create tracers MSG super(msg) end