š” LightUp 7.1 | SketchUp's only real-time renderer that uses object-based rendering
Download Trial
[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