Introduction

cheap cialis pill certified cialis cheap viagra in canada cialis buy drug buy generic cialis viagra buy 25mg viagra cheap viagra without prescription buy cheapest viagra on line purchase viagra cialis 10mg buying generic viagra cialis pills viagra from india cheapest sildenafil citrate cheap cialis no rx viagra india cialis bangkok viagra for order buy sildenafil internet buy generic viagra online buying cialis online where to order cialis tablet cialis find cialis no prescription required viagra cheap drug order cialis cheap online online pharmacy cialis cialis no rx order generic cialis price of cialis viagra soft drug viagra cheap viagra from uk order cialis no prescription order cheap viagra viagra drug order cheap cialis cheap cialis pharmacy best price for viagra cheap viagra from usa cost cialis cialis overnight shipping cheapest generic cialis online generic viagra online online viagra viagra sales cheap cialis in canada compare cialis prices online cialis online drug viagra online purchase discount cialis without prescription no rx viagra cialis overnight viagra uk cialis order cheap cialis from usa buying cialis cialis overnight delivery cialis in bangkok buy and purchase sildenafil online impotence treatment cheap price viagra viagra sale cheap cialis tablet drug cialis generic cialis online cheap viagra pharmacy find discount cialis online viagra malaysia cialis without a prescription buy cialis online cheap viagra rx buy no rx viagra cialis 20mg viagra in malaysia discount viagra online buy sildenafil cheap buy viagra low price buy cialis cialis cheap price cialis cheap generic viagra cialis canada low cost viagra buy cheap viagra cialis vs viagra order cialis from us cialis tablets find no rx cialis buy generic cialis online buy viagra overnight delivery cheapest cialis price buy cheapest cialis on line order cialis in canada viagra tablet viagra no online prescription find cheap cialis online viagra price order viagra no prescription cheap generic cialis buy viagra online cheap cialis uk cialis without rx generic cialis cheap viagra vs cialis order cialis on internet viagra tablets viagra purchase impotence drugs buy cialis generic cialis tablet cialis cheapest price order viagra from canada viagra generic cheap viagra from canada order cialis compare viagra prices online find cheap cialis impotence cure pfizer viagra find discount cialis cheapest cialis buy cialis from india impotence buy cheapest viagra online cialis side effects viagra order discount cialis online cialis in malaysia cialis in uk viagra in uk cialis online without prescription cialis online pharmacy order viagra buy viagra online viagra side effects cialis sale discount cialis no rx cheapest viagra find cialis order cialis no rx buy cialis low price buy viagra cheap drug cialis online purchase order discount viagra online 50 mg viagra 100 mg viagra 10mg cialis cost of cialis cheapest cialis prices buy discount viagra online cialis sales 50mg viagra cialis price buy viagra on internet cialis pill cheapest cialis online purchase viagra overnight delivery cheap cialis from canada cheapest viagra price cialis 20 mg buy sildenafil low cost order viagra without prescription buy viagra lowest price no prescription cialis order viagra on internet discount cialis overnight delivery cialis cheap drug viagra approved viagra no rx required compare viagra prices no rx cialis cheap cialis on internet buy viagra from india buy discount cialis online viagra pharmacy online order viagra from us cialis free delivery cialis for order buy cialis from canada viagra without rx viagra online review 10 mg cialis cheap viagra no rx cheapest viagra prices viagra prices cialis pharmacy order no rx cialis buy cialis in us buy cialis no prescription required order cialis from canada lowest price cialis cheap cialis internet online pharmacy viagra cheapest generic cialis generic drugs cialis india find cialis without prescription best price cialis buy viagra without prescription cheap cialis in uk where to buy viagra 20 mg cialis cheap cialis from uk buy sildenafil canada cialis no rx required cialis in us buy cialis overnight delivery cialis cheap price order cheap viagra online 20mg cialis buy cheap viagra online viagra internet viagra without prescription free cialis buy cialis us cialis buy buy viagra in canada order viagra cheap online find viagra without prescription viagra pills cheap cialis no prescription viagra online without prescription order generic viagra cialis discount viagra cheapest price purchase viagra no rx viagra no rx viagra cheap discount viagra overnight delivery sale cialis cialis pharmacy online purchase cialis without prescription pharmacy online cialis medication discount viagra buy cheap cialis impotence medication viagra medication find cialis on internet impotence pills cialis prices discount viagra without prescription cialis online cheap cialis online review find cheap viagra online buy viagra us purchase cialis online certified viagra where to order viagra buy cheapest viagra buy cialis internet order cialis online buy sildenafil online buy cialis cheap cheap viagra purchase cialis find discount viagra buy cialis on internet cialis buy online buy sildenafil online without a prescription viagra buy online order cheap cialis online viagra information no prescription viagra cost of viagra buy cialis in canada buy cialis online buy viagra cheapest generic viagra cialis us cialis australia fda approved cialis lowest price for viagra viagra bangkok cialis prescription cialis cost buy no rx cialis buy viagra internet viagra discount order viagra overnight delivery generic cialis viagra australia 25 mg viagra order viagra online viagra overnight cialis rx order cialis in us order viagra no rx order discount cialis online viagra vendors order viagra in us buy sildenafil in uk viagra us buy generic viagra viagra canada viagra no prescription viagra cheap price cheap viagra tablet viagra free delivery overnight viagra purchase viagra online find cheap viagra cialis malaysia best price viagra cialis free sample find viagra on internet cialis generic buy sildenafil in canada order cialis no prescription required cheapest viagra online purchase cialis no rx viagra in us order discount cialis cheap viagra internet free viagra cialis approved best price for cialis cialis from india find no rx viagra generic viagra viagra from canada viagra online pharmacy buy viagra from canada cheapest generic viagra online buy cheapest cialis discount cialis viagra overnight delivery cialis without prescription 100mg viagra cialis in australia price of viagra order cialis overnight delivery cheap viagra in uk buying generic cialis viagra pill buy cialis on line low cost cialis find discount viagra online buying viagra cheap cialis overnight delivery pharmacy cialis cheap viagra pill viagra prescription find viagra online buy cialis lowest price discount viagra no rx online cialis viagra free sample cheap viagra in usa find viagra cheap viagra online buy viagra no rx generic viagra cheap buy cialis without prescription buy viagra in us cheap viagra overnight delivery cheap cialis in usa cheap cialis online viagra order no rx viagra viagra soft tab find cialis online lowest price viagra cialis drug cialis vendors viagra online stores erectile dysfunction order viagra in canada buy viagra on line viagra overnight shipping viagra online cheap lowest price for cialis approved viagra pharmacy cialis 10 mg cialis no online prescription cialis purchase cialis from canada order cialis without prescription viagra for sale viagra in australia approved cialis pharmacy buy viagra generic buy sildenafil in spain find viagra no prescription required cialis no prescription buy viagra from us order viagra no prescription required cost viagra purchase viagra without prescription buy cialis no rx cialis cheap cialis internet tablet viagra cheap viagra on internet viagra cost pharmacy viagra cialis soft tab cialis information buy cheap cialis internet purchase cialis overnight delivery cheap cialis without prescription buy viagra no prescription required compare cialis prices buy cheap cialis online overnight cialis where to buy cialis cheap cialis buy cheap viagra internet buy discount cialis viagra buy drug cheap viagra no prescription buy sildenafil citrate buying viagra online buy discount viagra fda approved viagra cialis online stores cheap cialis tablets buy cheapest cialis online cheap viagra tablets order discount viagra sale viagra viagra online cialis for sale cialis soft viagra pharmacy buy cialis from us viagra without a prescription viagra in bangkokFlash is a lightweight cross-platform runtime for rich media, enterprise applications and mobile applications, as well as an integrated development environment. Flash can be programmed in ActionScript 1/2/3.

Sunday, May 30th, 2004 at 1:06 am

as2lib: Exception Handling

The as2lib’s exception handling is pretty similar to the Java way of handling exceptions. All basic exception classes reside in the org.as2lib.env.except package. There exists an interface called Throwable. This interface specifies all the operations every throwable/exception should have. Two concrete implementations of this interface are the Exception and FatalException classes. The only difference between these two is the level of fatality. They could be compared with the Exception and Error class respectively in the Java programming language.
One significant difference between the as2lib’s exception handling compared with the default Error class of Flash is the quantity of information offered. The as2lib’s exception handling provides information about the operation that threw the exception as well as information about the cause of the exception. The two operations to get hold of this information are Throwable.getStackTrace() and Throwable.getCause(). The stack trace offers right now only information about the operation that threw the exception and not about all the operations that were executed before the exception has been thrown. This is because arguments.caller.arguments… is not possible. But we are looking forward to offer a full stack trace in future releases.
Read on to see an example of how to write your own custom exception.

Writing exceptions is actually one of the easiest thing to do. You only have to import either org.as2lib.env.except.Exception or org.as2lib.env.except.FatalException and extend one of these classes. Then you implement a constructor that takes three arguments. At first the message then the throwing object and the arguments of the throwing method. The two last arguments are needed to provide stack trace information. You now have to call the constructor of the superclass and pass these three arguments. The concrete example is following:

  1. import org.as2lib.env.except.Exception;
  2.  
  3. class CustomException extends Exception {
  4.     public function CustomException(message:String, thrower, args) {
  5.         super(message, thrower, args);
  6.     }
  7. }

Well, that’s it. The only thing missing in the example is good documentation.
Oh, before I forget it. You can of course customize the Stringifier used to stringify the exception to get a different output as you need it. To do this create a new implementation of the org.as2lib.util.string.Stringifier interface and add an instance of this implementation class as throwable stringifier in the abstract org.as2lib.env.except.ExceptConfig class via the setThrowableStringifier() operation.

3 Responses to “as2lib: Exception Handling”

  1. Fei

    Hi, I found it seems I failed to catch the Exception which is thrown in an interval call. I am not sure if it is really not caught or is there anything wrong with my usage. So I post the coding herebelow.

    I am using the reviewed package of as2lib, not the alpha version.

    Herebelow is the coding of three cases(oh, the logic is ridiculous, I use it just to illustrate the phenomenon). First and second are normal, the third one just gives no output.

    //============ Normal Case=================

    import org.as2lib.env.except.Exception;

    function compareStrings(string_1, string_2) {
    try {
    if(string_1 != string_2) {
    throw new Exception(”Strings do not match.”, this, arguments);
    }
    } catch (e:Exception) {
    trace(e.toString());
    }
    }

    compareStrings(”Dog”,”dog”);

    //Output:org.as2lib.env.except.Exception: Strings do not match.

    //====Interval Call Case Use Error======
    var intervalId;
    var count = 0;

    function compareStrings(string_1, string_2) {
    count++;
    try {
    if(string_1 != string_2 && count > 5) {
    clearInterval(intervalId);
    throw new Error(”Strings do not match”);
    }
    } catch (e:Error) {
    trace(e.toString());
    }
    }

    intervalId = setInterval(compareStrings, 10, [”Dog”,”dog”]);

    //Output: Strings do not match

    //===== Interval Call Case Use Exception ====
    import org.as2lib.env.except.Exception;

    var intervalId;
    var count = 0;

    function compareStrings(string_1, string_2) {
    count++;
    try {
    if(string_1 != string_2 && count > 5) {
    clearInterval(intervalId);
    throw new Exception(”Strings do not match.”, this, arguments);
    }
    } catch (e:Exception) {
    trace(e.toString());
    }
    }

    intervalId = setInterval(compareStrings, 10, [”Dog”,”dog”]);

    //No output

  2. Simon Wacker

    I knew that the handling of custom exceptions in flash are buggy. We have already posted the bugs we encountered on http://www.as2lib.org/blog/index.php?p=20. But this one is new. ;) Thus I have myself made a few tests. The easiest thing to do is either use no type in the catch block or to use ‘Error’. But that’s no reals solution but just a dump workaround. I have used the following function for my tests:

    import org.as2lib.env.except.Exception;

    function compareStrings(string_1, string_2) {
    try {
    trace(”About to throw an exception!”);
    throw new Exception(”Strings do not match.”, this, arguments);
    } catch (e:Exception) {
    trace(”We caught it!”);
    } finally {
    clearInterval(intervalId);
    }
    }

    If you call the function using:

    compareStrings(”Dog”, “dog”);

    everything works fine and the output is:

    About to throw an exception!
    We caught it!

    But as soon as you use intervals the way you did:

    var intervalId:Number = setInterval(compareStrings, 10, [”Dog”,”dog”]);

    the exception will not be caught. But you can also use intervals in a somehow different manner:

    var intervalId:Number = setInterval(this, “compareStrings”, 10, [”Dog”,”dog”]);

    What has changed is that the function is now called with scope. Everything else is left unchanged. And it works again as expected.

    Exceptions in Flash are definitely something to improve in the next release of Flash. And I hope that all these mysterious issues will be resolved then.

  3. Fei

    Thank you very much. I actually have a class doing that, so I mingled tips from you and those from http://www.as2lib.org/blog/index.php?p=20, it now works fine.