All pastes #2110283 Raw Edit

Anonymous

public text v1 · immutable
#2110283 ·published 2012-02-06 14:12 UTC
rendered paste body
if (!$table->load(25))
{
    // handle error
}

//do other stuff here

becomes

try
{
    $table->load(25);

    // do other stuff here
}
catch (RuntimeException $e)
{
    // handle error
}