What a Programmer Sees When He Watches Inception

What i kept thinking the whole movie:

 
function inception($idea) {
    return enterDream($idea);
}


function enterDream($idea) {
    try {
        //Do Something...
    } catch (SubjectRealizesWhatsGoingOnException e) {
        return false;
    }

    if (IdeaHasTakenRoot) {
        return true;
    } else {
        return enterDream($idea);
    }
}