sveawebpay / dotnet-integration

SDK for Sveas standalone payment methods
Other
5 stars 14 forks source link

Remove redundant try-catch-Console.WriteLines #7

Closed irkush closed 11 years ago

irkush commented 11 years ago

The code has some redundant try-catches. In most cases the user of the code should handle the error themselves.

Where some of the Try-Catches also includes:

try
{
   /// something
}
catch(Exception ex)
{
    Console.WriteLine(ex.ToString());
}
Sinsabre commented 11 years ago

Solved in b09f10fbf80d8b0f4db01071e08ea83c72e3c4e0