summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rake/rule_recursion_overflow_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rake/rule_recursion_overflow_error.rb')
-rw-r--r--ruby_2_2/lib/rake/rule_recursion_overflow_error.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby_2_2/lib/rake/rule_recursion_overflow_error.rb b/ruby_2_2/lib/rake/rule_recursion_overflow_error.rb
deleted file mode 100644
index da4318da9d..0000000000
--- a/ruby_2_2/lib/rake/rule_recursion_overflow_error.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-
-module Rake
-
- # Error indicating a recursion overflow error in task selection.
- class RuleRecursionOverflowError < StandardError
- def initialize(*args)
- super
- @targets = []
- end
-
- def add_target(target)
- @targets << target
- end
-
- def message
- super + ": [" + @targets.reverse.join(' => ') + "]"
- end
- end
-
-end