お世話になります。

Swift2.0で、

http://d.hatena.ne.jp/scientre/20150527/get_network_status_in_swift

の記事に従って、
Reachability というライブラリを用いてインターネット接続の検出をしたいと思っています。

記事最下部の説明の通り、
「ネットワークに接続や切断したときに何か処理をしたいという場合の書き方」として、

let reachability = AMReachability.reachabilityForInternetConnection()
// エラー(Call can throw, but it is not marked with 'try' and the error is not handled)
        reachability.whenReachable = { reachability in
            print("インターネット接続あり")
        }
        reachability.whenUnreachable = { reachability in
            print("インターネット接続なし")
        }

reachability.startNotifier()
// エラー(Call can throw, but it is not marked with 'try' and the error is not handled)

とすると、

Call can throw, but it is not marked with 'try' and the error is not handled

というエラーがでます。

どのようにエラーハンドリングを書けばいいのでしょうか?

よろしくおねがいします。