summaryrefslogtreecommitdiffstats
path: root/lib/redmine/scm/adapters/command_failed.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-10-20 17:41:16 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-10-20 17:41:16 +0000
commitad0aa40ef11c54e152c560517084c0414412a924 (patch)
treea94bc9bc64a8a0594dd0272fbe99cb972c384a11 /lib/redmine/scm/adapters/command_failed.rb
parentd8df8c8bcb1e57b231b62ec0513c6c31af556a0c (diff)
downloadredmine-ad0aa40ef11c54e152c560517084c0414412a924.tar.gz
redmine-ad0aa40ef11c54e152c560517084c0414412a924.zip
Autoloading Redmine::Scm::Adapters::CommandFailed might fail.
git-svn-id: http://svn.redmine.org/redmine/trunk@15914 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/scm/adapters/command_failed.rb')
-rw-r--r--lib/redmine/scm/adapters/command_failed.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/redmine/scm/adapters/command_failed.rb b/lib/redmine/scm/adapters/command_failed.rb
new file mode 100644
index 000000000..6c65044c1
--- /dev/null
+++ b/lib/redmine/scm/adapters/command_failed.rb
@@ -0,0 +1,25 @@
+# Redmine - project management software
+# Copyright (C) 2006-2016 Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+module Redmine
+ module Scm
+ module Adapters
+ class CommandFailed < StandardError #:nodoc:
+ end
+ end
+ end
+end