skript-reflect
skript-reflect copied to clipboard
Try Section
Is your feature request related to a problem? Please describe.
I have a function that loads stuff from a file and each line can throw some sort of exception. I can't handle the exception without adding try
to every single line and checking last exception after each.
Describe the solution you'd like new section
try:
# code
if last exception is set:
or, function support
try function()