Catch Me If You Can

public class AbagnaleJr extends Exception {}

public boolean CathMeIfYouCan()
{
    try
    {
        launchMovie();
        return false;
    }
    catch (AbagnaleJr Franck)
    {
        System.out.println("Caught !");
        return true;
    }
}
Vote up this code0