検索文字をURLエンコードするためにjava.net.URLEncoder.encode()を使ったのですが以下のUnhandled exceptionがでてしまいできません。 なぜでしょうか。

Unhandled exception :

Unhandled exception: java.io.UnsupportedEncodeingException

URLEncoder使用箇所のコード :

if(this.searchWord!=null&&!this.searchWord.equals(""){
  this.searchWord = URLEncoder.encode(this.searchWord, "utf-8");
}