All solutions given work well. There is just another situation where images will be broken and a different solution.
You hot-link images. You have no control on the images that will eventually return a 404 and want to display something to the user. That you can prevent with css and with the correct width/height of the image on display.
// html code
<img class="external" src="http://externalserver.com/image.jpeg" width="300" height="200" />
// css
.external {
background: url(path-to-file);
-moz-force-broken-image-icon: 1; /* to make FF show the image */
}
And your background file would have a cross or a text saying that the image is not available anymore. Just a thought.
Hope it helps.