diff --git a/UICatalog/NumberToWords.cs b/UICatalog/NumberToWords.cs index 1616fd27b..6d5c942a1 100644 --- a/UICatalog/NumberToWords.cs +++ b/UICatalog/NumberToWords.cs @@ -24,9 +24,8 @@ namespace UICatalog { return Convert (amount_int) + " Point " + Convert (amount_dec) + " Only."; } } catch (Exception e) { - // TODO: handle exception + throw new ArgumentOutOfRangeException (e.Message); } - return ""; } public static String Convert (Int64 i)