Exception Handling with Flex
Category: Flex Examples, flex tutorials | 16,975 views | 2 Comments
A common hurdle a developer may face is dealing with exceptions in BlazeDS. When an exception is thrown in Java, how do we handle this in flex? Here is a simple and flexible approach inspired by Scott Morgan.
1. Create a Java Class that extends RuntimeException.
package com.flexpasta.exception;
public class FlexException extends RuntimeException
{
public FlexException(String message)
{
super(message);
}
}
- Creating a simple image gallery with the Flex TileList control
- Getting URL Parameters in Flex Actionscript
- learn Flex Application Frameworks
- Flex 2.0 Basics
- Data Push from Servers to Client
- flex Handling Events
- Learn Ruby on Rails with ‘Up and Running’
- Add FlexComponents to your mailing lists!
- Great Ways to Learn ActionScript 3 in Flash
- How to Learn Flex







