aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rake/task_argument_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake/task_argument_error.rb')
-rw-r--r--lib/rake/task_argument_error.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/rake/task_argument_error.rb b/lib/rake/task_argument_error.rb
new file mode 100644
index 0000000000..3e1dda64db
--- /dev/null
+++ b/lib/rake/task_argument_error.rb
@@ -0,0 +1,7 @@
+module Rake
+
+ # Error indicating an ill-formed task declaration.
+ class TaskArgumentError < ArgumentError
+ end
+
+end