Add an exception observer
mixed $callback - A valid php callback, see php func is_callable():
string $label The name of the observer. Use this if you want: to remove it later with removeObserver()
void
public static function addObserver($callback, $label = 'default') { self::$_observers[$label] = $callback; }