use standard error so its easier to catch

This commit is contained in:
Sam
2015-03-23 12:20:50 +11:00
parent 23513eaf87
commit bb20f64cb2
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ class ApplicationController < ActionController::Base
end
# Some exceptions
class RenderEmpty < Exception; end
class RenderEmpty < StandardError; end
# Render nothing
rescue_from RenderEmpty do
@@ -121,7 +121,7 @@ class ApplicationController < ActionController::Base
end
end
class PluginDisabled < Exception; end
class PluginDisabled < StandardError; end
# If a controller requires a plugin, it will raise an exception if that plugin is
# disabled. This allows plugins to be disabled programatically.