Try Catch

This extension allows you to call methods and set the properties with try and catch. What is Try & Catch? Try and catch place around the code to catch the exception like if you have a list of 3 items and you are selecting 4th then it will throw a runtime error with a dialog that impact very bad on UI and to user. So that's why I come up with this little extension. It has few blocks that will help you to catch the exception while calling the method and setting the properties of the components. As it works through Java reflection so you can also call method of extensions even of this extension.

Released on : 21 Jul 2021

Last Updated on : 15 May 2021

Latest Version : 2.0.0

All Blocks
blocks
Documentation
component_event (4)

This event raises when any exception is caught. It gives the exception in string. For ex, java.lang.ArrayIndexOutOfBoundsException.

component_method (2)

This block is for selecting the item of a list with catch exceptions. If the index is greater than the list length then it will simply call the catch event with java.lang.ArrayIndexOutOfBoundsException exception.

component_method (3)

This block invokes the methods and properties of the component as well as extensions. You just need to pass the component or extension to component parmaeter and method or property name to the name parameter and then just provide a list of parameters of that method that you are calling and the method will be invoke or called. If the called method is void type then you will get nothing in return but if not then it will return the result of the invoked or called method. If any error occured then catch event will be raised.

image

This block calls a procedure with a list of parameters in try catch. This is most simple thing you can do with your blocks to catch the errors. You can use any block of any component in that procedure if any error occurs then the Exception and Catch event will be raised. Now you won't need to use Call Method block to call every method of the component with try catch. Just move your whole blocks to a procedure and call the procedure with this block.

How to Use

There is very simple blocks and usage.

image

Selecting a item from a list for given index.

image

Calling a return a method of a label. The same way you can call the void methods of the extension and designer property of the components. Just remember to pass the parameter for the method that you're calling. For void method you should use the Evaluate but ignore result block as the called method will return null (because the method is void) .

image

Calling a return method of the extension.

Here is an image of blocks that shows how to call the procedure with new block.

image
Downloads

Download AIX : com.sumit1334.trycatch.aix (13.3 KB)


This extension is open source on Github.com

You can download it from GetAix.com