Sometimes you don't need the Exception itself:



try {
    changeImportantData();
} catch (PermissionException) {
    echo "You don't have permission to do this";
}