return;
}
}
Exception e = new ContentNetworkException(
"Content Network with id " + id + " not found");
for ( ContentNetworkListener l : listeners ) {
l.networkAddFailed(id, e);
}
}
}, 500);
}catch( Throwable e ){
ContentNetworkException e2 = new ContentNetworkException( "Failed to list permitted networks", e );
for ( ContentNetworkListener l : listeners ) {
l.networkAddFailed(id, e2);
}