ℹ️ GoFundMe | Our friend Gus Robatto needs some help in a challenging time Learn More
[code] Error raising scriptlets for testing
-
[ code ] Error raising scriptlets for testing purposes.
Here's a collection of scriptlets that
raise
errors when you load them. They each only have one line of code:<span class="syntaxdefault">raise</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">Exception</span><span class="syntaxkeyword">,</span><span class="syntaxstring">"This is a test error raised by '#{__FILE__}'"</span><span class="syntaxkeyword">)</span><span class="syntaxdefault"> </span>
Load these scripts from one of your scripts or plugins, in order to test
what happens when exceptions are raised.Helps you refine your
rescue
clauses, to trap all errors correctly. (I made them to test loading scripts from Ruby Console Plugins.)
I have them in a subfolder called Plugins/test/error so you'll see the zip folder is named "error", but you can put the error folder anywhere you wish (ex: a subfolder named "Plugins/dev".)
Each file is named after the exact Ruby
Exception
class, Ex: "SyntaxError.rb"
Advertisement