Ignore:
Timestamp:
2/8/2010 7:09:55 AM (2 years ago)
Author:
lowjoel
Message:

Do not localise exceptions which aren't meant to be seen by the user. User-visible exceptions will be dealt with in a separate ticket. Do not throw exceptions to indicate handleable errors (notably, when erasing unused space without administrator permissions) Addresses #275: Code Review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/CodeReview/Eraser.Manager/Task.cs

    r1765 r1767  
    183183            { 
    184184                if (value.Owner != null) 
    185                     throw new ArgumentException(S._("The schedule provided can only " + 
    186                         "belong to one task at a time")); 
     185                    throw new ArgumentException("The schedule provided can only " + 
     186                        "belong to one task at a time"); 
    187187 
    188188                if (schedule is RecurringSchedule) 
Note: See TracChangeset for help on using the changeset viewer.