Sha256: 75b5e2f85fe1e2a2d07993f08ffeb591db0a5b1d23727f5c0276269dcc66ed68
Contents?: true
Size: 246 Bytes
Versions: 1
Compression:
Stored size: 246 Bytes
Contents
# frozen_string_literal: true module Fixtury module Errors class CircularDependencyError < ::StandardError def initialize(name) super("One of the depdencies of #{name} is dependent on #{name}.") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fixtury-0.1.0.alpha | lib/fixtury/errors/circular_dependency_error.rb |